summaryrefslogtreecommitdiff
path: root/drivers/mmc/host/msm_sdcc.c
diff options
context:
space:
mode:
authorDaniel Walker <dwalker@codeaurora.org>2011-01-18 18:14:33 (GMT)
committerDavid Brown <davidb@codeaurora.org>2011-01-22 00:57:55 (GMT)
commit727a99a576ba562e5074d54cfcc57a1ce101c240 (patch)
tree63f3980866ec8d02890ea758b08e8c7f740dacaf /drivers/mmc/host/msm_sdcc.c
parent208028de5fa7732704d12cdd3f8fd45d2d8445e3 (diff)
downloadlinux-727a99a576ba562e5074d54cfcc57a1ce101c240.tar.xz
drivers: mmc: msm: remove clock disable in probe
The probe function adds the MMC host which can start accepting request immediately. There is an assumption here that no requests happen immediatly, but it's not always the case. This assumption can causes a BUG() when the clocks are disabled. The fix is to just remove the clock disable in the probe function. Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
Diffstat (limited to 'drivers/mmc/host/msm_sdcc.c')
-rw-r--r--drivers/mmc/host/msm_sdcc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/mmc/host/msm_sdcc.c b/drivers/mmc/host/msm_sdcc.c
index 733d233..153ab97 100644
--- a/drivers/mmc/host/msm_sdcc.c
+++ b/drivers/mmc/host/msm_sdcc.c
@@ -1326,9 +1326,6 @@ msmsdcc_probe(struct platform_device *pdev)
if (host->timer.function)
pr_info("%s: Polling status mode enabled\n", mmc_hostname(mmc));
-#if BUSCLK_PWRSAVE
- msmsdcc_disable_clocks(host, 1);
-#endif
return 0;
cmd_irq_free:
free_irq(cmd_irqres->start, host);