From: Ulf Hansson Date: Wed, 27 Jul 2016 09:46:25 +0000 (+0200) Subject: mmc: sdhci-esdhc-imx: Assign system PM ops within #ifdef CONFIG_PM_SLEEP X-Git-Tag: v4.8-rc1~81^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2788ed42cdd755c2e81bb962fed43426ee5aac64;p=platform%2Fkernel%2Flinux-exynos.git mmc: sdhci-esdhc-imx: Assign system PM ops within #ifdef CONFIG_PM_SLEEP The system PM callbacks isn't used unless CONFIG_PM_SLEEP is set, thus it triggers a compiler warning about unused functions. Avoid this by changing from CONFIG_PM to CONFIG_PM_SLEEP. Reported-by: Arnd Bergmann Fixes: b70d0b3b5b29 ("mmc: sdhci-esdhc-imx: add esdhc specific suspend resume callback") Cc: Dong Aisheng Signed-off-by: Ulf Hansson Acked-by: Dong Aisheng --- diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c index 2bb326b..f5768a6 100644 --- a/drivers/mmc/host/sdhci-esdhc-imx.c +++ b/drivers/mmc/host/sdhci-esdhc-imx.c @@ -1293,7 +1293,7 @@ static int sdhci_esdhc_imx_remove(struct platform_device *pdev) return 0; } -#ifdef CONFIG_PM +#ifdef CONFIG_PM_SLEEP static int sdhci_esdhc_suspend(struct device *dev) { return sdhci_pltfm_suspend(dev); @@ -1308,7 +1308,9 @@ static int sdhci_esdhc_resume(struct device *dev) return sdhci_pltfm_resume(dev); } +#endif +#ifdef CONFIG_PM static int sdhci_esdhc_runtime_suspend(struct device *dev) { struct sdhci_host *host = dev_get_drvdata(dev);