diff options
author | Ulf Hansson <ulf.hansson@linaro.org> | 2016-07-27 12:17:14 +0200 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2016-07-29 11:29:03 +0200 |
commit | 3e3274ab9ff37f691bb192df164c2c295a563d3c (patch) | |
tree | 4d4078d7e73e6ffcd558a861ccab7e615e686f4e /drivers/mmc | |
parent | 2788ed42cdd755c2e81bb962fed43426ee5aac64 (diff) |
mmc: sdhci-esdhc-imx: Use common sdhci_suspend|resume_host()
To prepare to make the sdhci_pltfm_suspend|resume() static functions, move
sdhci-esdhc-imx over to use the sdhci_suspend|resume_host().
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Acked-by: Dong Aisheng <aisheng.dong@nxp.com>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/sdhci-esdhc-imx.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c index f5768a620877..99e0b334f9df 100644 --- a/drivers/mmc/host/sdhci-esdhc-imx.c +++ b/drivers/mmc/host/sdhci-esdhc-imx.c @@ -1296,7 +1296,9 @@ static int sdhci_esdhc_imx_remove(struct platform_device *pdev) #ifdef CONFIG_PM_SLEEP static int sdhci_esdhc_suspend(struct device *dev) { - return sdhci_pltfm_suspend(dev); + struct sdhci_host *host = dev_get_drvdata(dev); + + return sdhci_suspend_host(host); } static int sdhci_esdhc_resume(struct device *dev) @@ -1306,7 +1308,7 @@ static int sdhci_esdhc_resume(struct device *dev) /* re-initialize hw state in case it's lost in low power mode */ sdhci_esdhc_imx_hwinit(host); - return sdhci_pltfm_resume(dev); + return sdhci_resume_host(host); } #endif |