From: Greg Kroah-Hartman Date: Wed, 24 Aug 2011 22:04:03 +0000 (-0700) Subject: 3.0 patches X-Git-Tag: v3.0.4~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71260272c6d27e6dd2f37c1df0916024ca81e9d6;p=thirdparty%2Fkernel%2Fstable-queue.git 3.0 patches --- diff --git a/queue-3.0/mmc-sdhci-fix-retuning-timer-wrongly-deleted-in.patch b/queue-3.0/mmc-sdhci-fix-retuning-timer-wrongly-deleted-in.patch new file mode 100644 index 00000000000..a63e56110bc --- /dev/null +++ b/queue-3.0/mmc-sdhci-fix-retuning-timer-wrongly-deleted-in.patch @@ -0,0 +1,35 @@ +From 78869618a886d33d8cdfcb78cf9b245b5250e465 Mon Sep 17 00:00:00 2001 +From: Aaron Lu +Date: Mon, 11 Jul 2011 13:27:11 +0800 +Subject: mmc: sdhci: fix retuning timer wrongly deleted in + sdhci_tasklet_finish + +From: Aaron Lu + +commit 78869618a886d33d8cdfcb78cf9b245b5250e465 upstream. + +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 +Reviewed-by: Philip Rakity +Signed-off-by: Chris Ball +Signed-off-by: Greg Kroah-Hartman + +--- + drivers/mmc/host/sdhci.c | 3 --- + 1 file changed, 3 deletions(-) + +--- a/drivers/mmc/host/sdhci.c ++++ b/drivers/mmc/host/sdhci.c +@@ -1863,9 +1863,6 @@ static void sdhci_tasklet_finish(unsigne + + del_timer(&host->timer); + +- if (host->version >= SDHCI_SPEC_300) +- del_timer(&host->tuning_timer); +- + mrq = host->mrq; + + /* diff --git a/queue-3.0/series b/queue-3.0/series index cd5c1cfbdd6..de8da3195da 100644 --- a/queue-3.0/series +++ b/queue-3.0/series @@ -30,3 +30,4 @@ drm-ttm-fix-ttm_bo_add_ttm-user-failure-path.patch drm-radeon-extended-ddc-probing-for-toshiba-l300d-radeon.patch fuse-check-size-of-fuse_notify_inval_entry-message.patch rt2x00-fix-order-of-entry-flags-modification.patch +mmc-sdhci-fix-retuning-timer-wrongly-deleted-in.patch