aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/mmc/host/sh_mobile_sdhi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mmc/host/sh_mobile_sdhi.c b/drivers/mmc/host/sh_mobile_sdhi.c
index 2d6ce257a273..03fe7518bba4 100644
--- a/drivers/mmc/host/sh_mobile_sdhi.c
+++ b/drivers/mmc/host/sh_mobile_sdhi.c
@@ -316,10 +316,10 @@ static int sh_mobile_sdhi_remove(struct platform_device *pdev)
316} 316}
317 317
318static const struct dev_pm_ops tmio_mmc_dev_pm_ops = { 318static const struct dev_pm_ops tmio_mmc_dev_pm_ops = {
319 .suspend = tmio_mmc_host_suspend, 319 SET_SYSTEM_SLEEP_PM_OPS(tmio_mmc_host_suspend, tmio_mmc_host_resume)
320 .resume = tmio_mmc_host_resume, 320 SET_RUNTIME_PM_OPS(tmio_mmc_host_runtime_suspend,
321 .runtime_suspend = tmio_mmc_host_runtime_suspend, 321 tmio_mmc_host_runtime_resume,
322 .runtime_resume = tmio_mmc_host_runtime_resume, 322 NULL)
323}; 323};
324 324
325static struct platform_driver sh_mobile_sdhi_driver = { 325static struct platform_driver sh_mobile_sdhi_driver = {