From: Philip Rakity <prakity@xxxxxxxxxxx> Since we are suspending, the tuning timer should be deactivated. Signed-off-by: Philip Rakity <prakity@xxxxxxxxxxx> Acked-by: Aaron Lu <aaron.lu@xxxxxxx> --- drivers/mmc/host/sdhci.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index ab6018f..1abbd26 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -2347,8 +2347,7 @@ int sdhci_suspend_host(struct sdhci_host *host) if (host->version >= SDHCI_SPEC_300 && host->tuning_count && host->tuning_mode == SDHCI_TUNING_MODE_1) { host->flags &= ~SDHCI_NEEDS_RETUNING; - mod_timer(&host->tuning_timer, jiffies + - host->tuning_count * HZ); + del_timer_sync(&host->tuning_timer); } ret = mmc_suspend_host(host->mmc); -- 1.7.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html