diff options
| author | Sahitya Tummala <stummala@codeaurora.org> | 2015-11-05 09:33:05 +0530 |
|---|---|---|
| committer | Kyle Yan <kyan@codeaurora.org> | 2016-06-13 16:17:53 -0700 |
| commit | 07a520f6aa6762aaeabfc5983af4874f514ee004 (patch) | |
| tree | ea923c5e857b425a473cfe361fbaaf78027cdcb7 /drivers | |
| parent | 48fb96241b25329ca0d9a70de1bc4e025eeef607 (diff) | |
mmc: sdhci-msm: Don't enable MMC_CAP2_FULL_PWR_CYCLE
The commit '6e2df8c0e' incorrectly sets this capability.
This needs to be set only if the host is capable of disabling
both vcc and vccq. For SDHCI MSM host controllers only vcc
is disabled during suspend. Hence, remove this capability
for MSM hosts.
Change-Id: I69f9dacaa042e9f9a0bc4ed886f97c5c4a3b9791
Signed-off-by: Sahitya Tummala <stummala@codeaurora.org>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mmc/host/sdhci-msm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-msm.c b/drivers/mmc/host/sdhci-msm.c index fecb45daa827..b2610be29ed4 100644 --- a/drivers/mmc/host/sdhci-msm.c +++ b/drivers/mmc/host/sdhci-msm.c @@ -4214,7 +4214,6 @@ static int sdhci_msm_probe(struct platform_device *pdev) msm_host->mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY; msm_host->mmc->caps2 |= msm_host->pdata->caps2; msm_host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC; - msm_host->mmc->caps2 |= MMC_CAP2_FULL_PWR_CYCLE; msm_host->mmc->caps2 |= MMC_CAP2_HS400_POST_TUNING; msm_host->mmc->caps2 |= MMC_CAP2_CLK_SCALE; msm_host->mmc->caps2 |= MMC_CAP2_SANITIZE; |
