From: Tony Lindgren Date: Fri, 9 Mar 2012 04:41:35 +0000 (-0500) Subject: mmc: omap_hsmmc: Fix "Unbalanced pm_runtime_enable!" warning X-Git-Tag: v3.4-rc1~49^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=37f6190d54f4d90b886784fadbb9cf82d5c8b1ef;p=platform%2Fkernel%2Flinux-stable.git mmc: omap_hsmmc: Fix "Unbalanced pm_runtime_enable!" warning Otherwise we can get following warning when re-loading the omap_hsmmc driver module when gpio_twl4030 module is not loaded: omap_hsmmc omap_hsmmc.0: Unbalanced pm_runtime_enable! omap_hsmmc omap_hsmmc.0: Unable to grab MMC CD IRQ omap_hsmmc: probe of omap_hsmmc.0 failed with error -22 Signed-off-by: Tony Lindgren Signed-off-by: Chris Ball --- diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index 98adf0c..94d46385 100644 --- a/drivers/mmc/host/omap_hsmmc.c +++ b/drivers/mmc/host/omap_hsmmc.c @@ -1935,6 +1935,7 @@ err_irq_cd_init: err_irq: pm_runtime_mark_last_busy(host->dev); pm_runtime_put_autosuspend(host->dev); + pm_runtime_disable(host->dev); clk_put(host->fclk); if (host->got_dbclk) { clk_disable(host->dbclk);