]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mmc: sdhci-acpi: Pass HID and UID to probe_slot
authorAdrian Hunter <adrian.hunter@intel.com>
Mon, 6 Oct 2014 12:23:06 +0000 (15:23 +0300)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 6 Oct 2014 13:08:14 +0000 (15:08 +0200)
Pass HID and UID to probe_slot so extra setup
can be done for specific ids.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci-acpi.c

index 839f26cdc90130b8b9ab659b36bec3b0e52b42e4..7548261221b50116ed65abb569edd5f7b188a94e 100644 (file)
@@ -67,7 +67,7 @@ struct sdhci_acpi_slot {
        unsigned int    caps2;
        mmc_pm_flag_t   pm_caps;
        unsigned int    flags;
-       int (*probe_slot)(struct platform_device *);
+       int (*probe_slot)(struct platform_device *, const char *, const char *);
        int (*remove_slot)(struct platform_device *);
 };
 
@@ -124,7 +124,8 @@ static const struct sdhci_acpi_chip sdhci_acpi_chip_int = {
        .ops = &sdhci_acpi_ops_int,
 };
 
-static int sdhci_acpi_emmc_probe_slot(struct platform_device *pdev)
+static int sdhci_acpi_emmc_probe_slot(struct platform_device *pdev,
+                                     const char *hid, const char *uid)
 {
        struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
        struct sdhci_host *host;
@@ -139,7 +140,8 @@ static int sdhci_acpi_emmc_probe_slot(struct platform_device *pdev)
        return 0;
 }
 
-static int sdhci_acpi_sdio_probe_slot(struct platform_device *pdev)
+static int sdhci_acpi_sdio_probe_slot(struct platform_device *pdev,
+                                     const char *hid, const char *uid)
 {
        struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
        struct sdhci_host *host;
@@ -154,7 +156,8 @@ static int sdhci_acpi_sdio_probe_slot(struct platform_device *pdev)
        return 0;
 }
 
-static int sdhci_acpi_sd_probe_slot(struct platform_device *pdev)
+static int sdhci_acpi_sd_probe_slot(struct platform_device *pdev,
+                                   const char *hid, const char *uid)
 {
        struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
        struct sdhci_host *host;
@@ -314,7 +317,7 @@ static int sdhci_acpi_probe(struct platform_device *pdev)
 
        if (c->slot) {
                if (c->slot->probe_slot) {
-                       err = c->slot->probe_slot(pdev);
+                       err = c->slot->probe_slot(pdev, hid, uid);
                        if (err)
                                goto err_free;
                }