[PATCH] mmc: omap_hsmmc: Fix Unbalanced pm_runtime_enable warning
Tony Lindgren
tony at atomide.com
Mon Mar 5 18:42:41 EST 2012
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 <tony at atomide.com>
---
Kevin, maybe take a look and see if this is correct and
fits into your PM branches?
Tony
--- a/drivers/mmc/host/omap_hsmmc.c
+++ b/drivers/mmc/host/omap_hsmmc.c
@@ -2146,6 +2146,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);
More information about the linux-arm-kernel
mailing list