From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751438AbbIGGGA (ORCPT ); Mon, 7 Sep 2015 02:06:00 -0400 Received: from mga09.intel.com ([134.134.136.24]:41330 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750764AbbIGGF4 (ORCPT ); Mon, 7 Sep 2015 02:05:56 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,483,1437462000"; d="scan'208";a="556751465" Subject: Re: [PATCH] mmc: sdhci-acpi: detect sd card reader on asus x205ta To: Michele Curti , ulf.hansson@linaro.org References: <1441435792-446-1-git-send-email-michele.curti@gmail.com> Cc: andriy.shevchenko@linux.intel.com, yunpeng.gao@intel.com, peter.griffin@linaro.org, rafael.j.wysocki@intel.com, linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org From: Adrian Hunter Organization: Intel Finland Oy, Registered Address: PL 281, 00181 Helsinki, Business Identity Code: 0357606 - 4, Domiciled in Helsinki Message-ID: <55ED289B.7010709@intel.com> Date: Mon, 7 Sep 2015 09:03:07 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <1441435792-446-1-git-send-email-michele.curti@gmail.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 05/09/15 09:49, Michele Curti wrote: > Add an entry to the sdhci_acpi_uids list to detect the SD card > reader on the Asus X205Ta laptop. > > dstd table: > > Device (SDHC) > { > Name (_ADR, Zero) // _ADR: Address > Name (_HID, "PNP0FFF") // _HID: Hardware ID > Name (_CID, "PNP0D40" /* SDA Standard Compliant SD Host Controller */) > Name (_DDN, "Intel(R) SD Card Controller - 80860F16") // _DDN: DOS Dev > Name (_UID, 0x03) // _UID: Unique ID > Name (RDEP, Package (0x02) > > Signed-off-by: Michele Curti Acked-by: Adrian Hunter > --- > drivers/mmc/host/sdhci-acpi.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/mmc/host/sdhci-acpi.c b/drivers/mmc/host/sdhci-acpi.c > index 22d929f..78aa16a 100644 > --- a/drivers/mmc/host/sdhci-acpi.c > +++ b/drivers/mmc/host/sdhci-acpi.c > @@ -247,6 +247,7 @@ static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = { > { "INT33C6" , NULL, &sdhci_acpi_slot_int_sdio }, > { "INT3436" , NULL, &sdhci_acpi_slot_int_sdio }, > { "INT344D" , NULL, &sdhci_acpi_slot_int_sdio }, > + { "PNP0FFF" , "3" , &sdhci_acpi_slot_int_sd }, > { "PNP0D40" }, > { }, > }; >