From: Chris Ball Date: Wed, 19 Sep 2012 06:43:33 +0000 (+0800) Subject: mmc: sdhci-s3c: fix the wrong number of max bus clocks X-Git-Tag: next-20121004~36^2~7 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=2f02b56e5373465f6570dd2bb3bbf41f82cd8599;p=karo-tx-linux.git mmc: sdhci-s3c: fix the wrong number of max bus clocks We can use up to four bus-clocks; but on module remove, we didn't disable the fourth bus clock. Signed-off-by: Jaehoon Chung Signed-off-by: Kyungmin Park Cc: stable Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/host/sdhci-s3c.c b/drivers/mmc/host/sdhci-s3c.c index f64108f2664a..e0196726b132 100644 --- a/drivers/mmc/host/sdhci-s3c.c +++ b/drivers/mmc/host/sdhci-s3c.c @@ -792,7 +792,7 @@ static int __devexit sdhci_s3c_remove(struct platform_device *pdev) pm_runtime_disable(&pdev->dev); clk_disable(sc->clk_bus[sc->cur_clk]); - for (ptr = 0; ptr < 3; ptr++) { + for (ptr = 0; ptr < MAX_BUS_CLK; ptr++) { if (sc->clk_bus[ptr]) { clk_put(sc->clk_bus[ptr]); }