diff options
author | Roger Tseng <rogerable@realtek.com> | 2014-09-24 17:07:13 +0800 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2014-09-24 11:20:04 +0200 |
commit | 8af465db967bf25a4617416c0cbaaaa506d444f5 (patch) | |
tree | d596b7ab1c6007cec7a6f0a4ec5907f1cc15465a /drivers/mmc | |
parent | 7756a96d1617753d8387e59e0ba410e0dd512be4 (diff) | |
download | op-kernel-dev-8af465db967bf25a4617416c0cbaaaa506d444f5.zip op-kernel-dev-8af465db967bf25a4617416c0cbaaaa506d444f5.tar.gz |
mmc: core: Add new power_mode MMC_POWER_UNDEFINED
Add MMC_POWER_UNDEFINED for power_mode in struct mmc_ios and use it as
the initial value of host->ios.power_mode.
For hosts with MMC_CAP2_NO_PRESCAN_POWERUP, this makes the later
mmc_power_off() do real power-off things instead of NOP, and further
prevents state messed up in cards that was already initialized (eg. by
BIOS of UEFI driver).
Signed-off-by: Roger Tseng <rogerable@realtek.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/core/core.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c index b1e209f..cbb2321 100644 --- a/drivers/mmc/core/core.c +++ b/drivers/mmc/core/core.c @@ -2482,6 +2482,7 @@ void mmc_start_host(struct mmc_host *host) { host->f_init = max(freqs[0], host->f_min); host->rescan_disable = 0; + host->ios.power_mode = MMC_POWER_UNDEFINED; if (host->caps2 & MMC_CAP2_NO_PRESCAN_POWERUP) mmc_power_off(host); else |