summaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/sdhci-pxav3.c
diff options
context:
space:
mode:
authorJisheng Zhang2015-01-04 16:15:48 +0100
committerUlf Hansson2015-01-19 09:56:32 +0100
commit20f1f2d7d4a497ce6c51866e23ce5f452e3aeb99 (patch)
tree1c846c0d9318c5536d29b5e073cfebe6793ce9cd /drivers/mmc/host/sdhci-pxav3.c
parentmmc: sdhci-pxav3: fix unbalanced clock issues during probe (diff)
downloadkernel-qcow2-linux-20f1f2d7d4a497ce6c51866e23ce5f452e3aeb99.tar.gz
kernel-qcow2-linux-20f1f2d7d4a497ce6c51866e23ce5f452e3aeb99.tar.xz
kernel-qcow2-linux-20f1f2d7d4a497ce6c51866e23ce5f452e3aeb99.zip
mmc: sdhci-pxav3: fix pm unbalanced issue in -> remove()
This patch calls pm_runtime_put_noidle() to restore the device's usage counter in the ->remove() implementation. Signed-off-by: Jisheng Zhang <jszhang@marvell.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/host/sdhci-pxav3.c')
-rw-r--r--drivers/mmc/host/sdhci-pxav3.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci-pxav3.c b/drivers/mmc/host/sdhci-pxav3.c
index 1255dd2b91c1..4de39fb6dc2d 100644
--- a/drivers/mmc/host/sdhci-pxav3.c
+++ b/drivers/mmc/host/sdhci-pxav3.c
@@ -412,8 +412,10 @@ static int sdhci_pxav3_remove(struct platform_device *pdev)
struct sdhci_pxa *pxa = pltfm_host->priv;
pm_runtime_get_sync(&pdev->dev);
- sdhci_remove_host(host, 1);
pm_runtime_disable(&pdev->dev);
+ pm_runtime_put_noidle(&pdev->dev);
+
+ sdhci_remove_host(host, 1);
clk_disable_unprepare(pxa->clk_io);
if (!IS_ERR(pxa->clk_core))