]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
MMC: omap_hsmmc: enable interface clock before calling mmc_host_enable()
authorPaul Walmsley <paul@pwsan.com>
Sat, 26 Feb 2011 01:22:08 +0000 (18:22 -0700)
committerPaul Walmsley <paul@pwsan.com>
Tue, 1 Mar 2011 23:39:30 +0000 (16:39 -0700)
The code path entered via mmc_host_enable() can include register
accesses to the HSMMC IP block.  For this to work, both the device
interface clock and functional clock need to be enabled before
mmc_host_enable() is called.  However, omap_hsmmc_probe() calls
mmc_host_enable() before enabling the device interface clock.

Fix by calling mmc_host_enable() after the device interface clock is
enabled.

Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Madhusudhan Chikkature Rajashekar <madhu.cr@ti.com>
Cc: Adrian Hunter <adrian.hunter@nokia.com>
Cc: Kishore Kadiyala <kishore.kadiyala@ti.com>
Cc: Tero Kristo <Tero.Kristo@nokia.com>
Acked-by: Madhusudhan Chikkature Rajashekar <madhu.cr@ti.com>
drivers/mmc/host/omap_hsmmc.c

index 078fdf11af030a966e117e7b0a0e80bffaf80206..0cf0d89e4183ddffceb50ab003dbf2b72ca5ad01 100644 (file)
@@ -2101,14 +2101,14 @@ static int __init omap_hsmmc_probe(struct platform_device *pdev)
        /* we start off in DISABLED state */
        host->dpm_state = DISABLED;
 
-       if (mmc_host_enable(host->mmc) != 0) {
+       if (clk_enable(host->iclk) != 0) {
                clk_put(host->iclk);
                clk_put(host->fclk);
                goto err1;
        }
 
-       if (clk_enable(host->iclk) != 0) {
-               mmc_host_disable(host->mmc);
+       if (mmc_host_enable(host->mmc) != 0) {
+               clk_disable(host->iclk);
                clk_put(host->iclk);
                clk_put(host->fclk);
                goto err1;