aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVignesh R2016-11-18 07:52:25 -0600
committerLokesh Vutla2016-11-18 08:01:18 -0600
commit9b01814100df5b25719b15b66f57bba3a66dac46 (patch)
treef38d7bdfd5649e5f6029ba88a8d96dee1014e1cb
parent96d42df4e7cb700bde4bdf5106cfd2753749c4e7 (diff)
downloadu-boot-9b01814100df5b25719b15b66f57bba3a66dac46.tar.gz
u-boot-9b01814100df5b25719b15b66f57bba3a66dac46.tar.xz
u-boot-9b01814100df5b25719b15b66f57bba3a66dac46.zip
Revert "mmc: disable the mmc clock during power off"
This patch causes AM57x-evm to popup below error message when U-Boot comes up when using SDR104 card. Hence revert it. Card did not respond to voltage select! ** Bad device mmc 0 ** This reverts commit 96d42df4e7cb700bde4bdf5106cfd2753749c4e7. Signed-off-by: Vignesh R <vigneshr@ti.com>
-rw-r--r--drivers/mmc/mmc.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c
index 84515a7183..c929a1e363 100644
--- a/drivers/mmc/mmc.c
+++ b/drivers/mmc/mmc.c
@@ -2058,7 +2058,6 @@ static void mmc_power_off(struct mmc *mmc)
2058{ 2058{
2059 mmc_set_signal_voltage(mmc, 0); 2059 mmc_set_signal_voltage(mmc, 0);
2060 mmc_set_vdd(mmc, false); 2060 mmc_set_vdd(mmc, false);
2061 mmc_set_clock(mmc, 1, true);
2062} 2061}
2063 2062
2064static void mmc_power_cycle(struct mmc *mmc) 2063static void mmc_power_cycle(struct mmc *mmc)