linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mmc: sdhci-acpi: detect sd card reader on asus x205ta
@ 2015-09-05  6:49 Michele Curti
  2015-09-07  6:03 ` Adrian Hunter
  2015-09-15 11:33 ` Ulf Hansson
  0 siblings, 2 replies; 3+ messages in thread
From: Michele Curti @ 2015-09-05  6:49 UTC (permalink / raw)
  To: ulf.hansson
  Cc: adrian.hunter, andriy.shevchenko, yunpeng.gao, peter.griffin,
	rafael.j.wysocki, linux-mmc, linux-kernel, Michele Curti

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 <michele.curti@gmail.com>
---
 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"  },
 	{ },
 };
-- 
2.5.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] mmc: sdhci-acpi: detect sd card reader on asus x205ta
  2015-09-05  6:49 [PATCH] mmc: sdhci-acpi: detect sd card reader on asus x205ta Michele Curti
@ 2015-09-07  6:03 ` Adrian Hunter
  2015-09-15 11:33 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Adrian Hunter @ 2015-09-07  6:03 UTC (permalink / raw)
  To: Michele Curti, ulf.hansson
  Cc: andriy.shevchenko, yunpeng.gao, peter.griffin, rafael.j.wysocki,
	linux-mmc, linux-kernel

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 <michele.curti@gmail.com>

Acked-by: Adrian Hunter <adrian.hunter@intel.com>

> ---
>  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"  },
>  	{ },
>  };
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] mmc: sdhci-acpi: detect sd card reader on asus x205ta
  2015-09-05  6:49 [PATCH] mmc: sdhci-acpi: detect sd card reader on asus x205ta Michele Curti
  2015-09-07  6:03 ` Adrian Hunter
@ 2015-09-15 11:33 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2015-09-15 11:33 UTC (permalink / raw)
  To: Michele Curti
  Cc: Adrian Hunter, Andy Shevchenko, Yunpeng Gao, Peter Griffin,
	Rafael J. Wysocki, linux-mmc, linux-kernel

On 5 September 2015 at 08:49, Michele Curti <michele.curti@gmail.com> 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 <michele.curti@gmail.com>

Thanks, applied for next!

Kind regards
Uffe

> ---
>  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"  },
>         { },
>  };
> --
> 2.5.1
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-09-15 11:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-05  6:49 [PATCH] mmc: sdhci-acpi: detect sd card reader on asus x205ta Michele Curti
2015-09-07  6:03 ` Adrian Hunter
2015-09-15 11:33 ` Ulf Hansson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).