All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mmc: sdhci: fix retuning timer wrongly deleted in sdhci_tasklet_finish
@ 2011-07-11  5:27 Aaron Lu
  2011-07-15  6:51 ` Nath, Arindam
  2011-07-28 22:28 ` Chris Ball
  0 siblings, 2 replies; 11+ messages in thread
From: Aaron Lu @ 2011-07-11  5:27 UTC (permalink / raw)
  To: Chris Ball; +Cc: Arindam Nath, linux-mmc, Aaron Lu

Currently, the retuning timer for retuning mode 1 will be deleted in
function sdhci_tasklet_finish after a mmc request done, which will make
retuning timing never trigger again. This patch fixed this problem.

Signed-off-by: Aaron Lu <Aaron.Lu@amd.com>
---
 drivers/mmc/host/sdhci.c |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)

diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index 91d9892..6250bac 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -1863,9 +1863,6 @@ static void sdhci_tasklet_finish(unsigned long param)
 
 	del_timer(&host->timer);
 
-	if (host->version >= SDHCI_SPEC_300)
-		del_timer(&host->tuning_timer);
-
 	mrq = host->mrq;
 
 	/*
-- 
1.7.1



^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2011-07-28 22:28 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-11  5:27 [PATCH] mmc: sdhci: fix retuning timer wrongly deleted in sdhci_tasklet_finish Aaron Lu
2011-07-15  6:51 ` Nath, Arindam
2011-07-21  5:23   ` Aaron Lu
2011-07-21  9:35     ` zhangfei gao
2011-07-21 10:03       ` Aaron Lu
2011-07-21 20:27         ` Philip Rakity
2011-07-22  0:58           ` Aaron Lu
2011-07-22 10:21         ` zhangfei gao
2011-07-27  9:15           ` Aaron Lu
2011-07-27 14:56             ` Philip Rakity
2011-07-28 22:28 ` Chris Ball

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.