Commit 3e3274ab authored by Ulf Hansson's avatar Ulf Hansson

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: default avatarUlf Hansson <ulf.hansson@linaro.org>
Acked-by: default avatarDong Aisheng <aisheng.dong@nxp.com>
parent 2788ed42
...@@ -1296,7 +1296,9 @@ static int sdhci_esdhc_imx_remove(struct platform_device *pdev) ...@@ -1296,7 +1296,9 @@ static int sdhci_esdhc_imx_remove(struct platform_device *pdev)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int sdhci_esdhc_suspend(struct device *dev) 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) static int sdhci_esdhc_resume(struct device *dev)
...@@ -1306,7 +1308,7 @@ 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 */ /* re-initialize hw state in case it's lost in low power mode */
sdhci_esdhc_imx_hwinit(host); sdhci_esdhc_imx_hwinit(host);
return sdhci_pltfm_resume(dev); return sdhci_resume_host(host);
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment