summaryrefslogtreecommitdiff
path: root/drivers/mmc
diff options
context:
space:
mode:
authorMursalin Akon <makon@nvidia.com>2012-03-16 17:59:14 -0700
committerRohan Somvanshi <rsomvanshi@nvidia.com>2012-03-30 09:12:48 -0700
commit0cb87f8335b7bce04e1851506156f592dfb052be (patch)
tree8217056cb693f36781f096d808b3d21cfc6bb193 /drivers/mmc
parent78f6d67dc8c508ba352a10e6c13abc06cf6f63ab (diff)
mmc:host: add pm_caps and pm_flags to platform data
Initialize pm_caps and pm_flags through platform data. Bug 956238 Change-Id: I400f6e92541fa2e63ccc7f829e204d5eef4697fc Signed-off-by: Mursalin Akon <makon@nvidia.com> Reviewed-on: http://git-master/r/90790 Reviewed-by: Automatic_Commit_Validation_User Tested-by: Gerrit_Virtual_Submit Reviewed-by: Allen Martin <amartin@nvidia.com>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/sdhci-tegra.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-tegra.c b/drivers/mmc/host/sdhci-tegra.c
index 2276fdeec50f..4dfe8176308c 100644
--- a/drivers/mmc/host/sdhci-tegra.c
+++ b/drivers/mmc/host/sdhci-tegra.c
@@ -1063,7 +1063,8 @@ static int __devinit sdhci_tegra_probe(struct platform_device *pdev)
tegra_host->instance = pdev->id;
tegra_host->dpd = tegra_io_dpd_get(mmc_dev(host->mmc));
- host->mmc->pm_caps = plat->pm_flags;
+ host->mmc->pm_caps |= plat->pm_caps;
+ host->mmc->pm_flags |= plat->pm_flags;
host->mmc->caps |= MMC_CAP_ERASE;
host->mmc->caps |= MMC_CAP_DISABLE;