]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
sdhci: don't assign mmc->caps at SDHCI directly
authorKyungmin Park <kyungmin.park@samsung.com>
Wed, 11 Aug 2010 01:01:44 +0000 (18:01 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 11 Aug 2010 15:59:03 +0000 (08:59 -0700)
Some host controllers can set mmc->caps before sdhci_add_host().

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: <linux-mmc@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/mmc/host/sdhci.c

index f34ec5d6bccf3d30292cd8f540466b7996402604..3896069bd9845283edb314a6c23d3e554d3123a7 100644 (file)
@@ -1797,7 +1797,7 @@ int sdhci_add_host(struct sdhci_host *host)
        else
                mmc->f_min = host->max_clk / 256;
        mmc->f_max = host->max_clk;
-       mmc->caps = MMC_CAP_SDIO_IRQ;
+       mmc->caps |= MMC_CAP_SDIO_IRQ;
 
        if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
                mmc->caps |= MMC_CAP_4_BIT_DATA;