ARM: 6309/1: mmci: allow neither ->status nor gpio_cd to be specified
authorRabin Vincent <rabin.vincent@stericsson.com>
Mon, 9 Aug 2010 11:56:40 +0000 (12:56 +0100)
committerRussell King <rmk+kernel@arm.linux.org.uk>
Thu, 23 Sep 2010 14:02:00 +0000 (15:02 +0100)
The card may be always present on the board, and for these cases neither
a status callback nor a card detect GPIO is required, and card detection
polling can be disabled.

Acked-by: Linus Walleij <linus.walleij@stericsson.com>
Signed-off-by: Rabin Vincent <rabin.vincent@stericsson.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
drivers/mmc/host/mmci.c

index a922a00..fd89d92 100644 (file)
@@ -589,9 +589,12 @@ static int mmci_get_cd(struct mmc_host *mmc)
        struct mmci_platform_data *plat = host->plat;
        unsigned int status;
 
-       if (host->gpio_cd == -ENOSYS)
+       if (host->gpio_cd == -ENOSYS) {
+               if (!plat->status)
+                       return 1; /* Assume always present */
+
                status = plat->status(mmc_dev(host->mmc));
-       else
+       else
                status = !!gpio_get_value(host->gpio_cd) ^ plat->cd_invert;
 
        /*
@@ -787,7 +790,8 @@ static int __devinit mmci_probe(struct amba_device *dev, struct amba_id *id)
                        goto err_gpio_wp;
        }
 
-       if (host->gpio_cd_irq < 0)
+       if ((host->plat->status || host->gpio_cd != -ENOSYS)
+           && host->gpio_cd_irq < 0)
                mmc->caps |= MMC_CAP_NEEDS_POLL;
 
        ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);