diff options
author | Sangwook Lee <sangwook.lee@linaro.org> | 2011-11-07 12:05:22 -0500 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2012-01-11 23:58:43 -0500 |
commit | fa1773cc5b78faa1ef0ab1ab0f48bce7bc72cec5 (patch) | |
tree | 9cbf08ea4948c32dea45bfa036870dd8414f3598 /drivers | |
parent | d30495048892980e5d453328d1cc9343b3f7e917 (diff) |
mmc: sdhci-s3c: Add pm_caps into SD/MMC host
sdhci-s3c updates pm_caps from platform data for SDIO PM.
Signed-off-by: Sangwook Lee <sangwook.lee@samsung.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mmc/host/sdhci-s3c.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c index 55c1e870da83..b6558b829a9c 100644 --- a/drivers/mmc/host/sdhci-s3c.c +++ b/drivers/mmc/host/sdhci-s3c.c | |||
@@ -524,6 +524,9 @@ static int __devinit sdhci_s3c_probe(struct platform_device *pdev) | |||
524 | if (pdata->host_caps) | 524 | if (pdata->host_caps) |
525 | host->mmc->caps |= pdata->host_caps; | 525 | host->mmc->caps |= pdata->host_caps; |
526 | 526 | ||
527 | if (pdata->pm_caps) | ||
528 | host->mmc->pm_caps |= pdata->pm_caps; | ||
529 | |||
527 | host->quirks |= (SDHCI_QUIRK_32BIT_DMA_ADDR | | 530 | host->quirks |= (SDHCI_QUIRK_32BIT_DMA_ADDR | |
528 | SDHCI_QUIRK_32BIT_DMA_SIZE); | 531 | SDHCI_QUIRK_32BIT_DMA_SIZE); |
529 | 532 | ||