diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-03-04 00:03:25 -0500 |
---|---|---|
committer | Chris Ball <chris@printf.net> | 2014-05-12 18:04:30 -0400 |
commit | 15a2e2ab62f1f1d8b43ae43670de7bc2b21f7f86 (patch) | |
tree | f8c9734d59b5677c0319b5a14b655eec4aaeed0e | |
parent | 5027251eced6e34315a52bd841279df957f627bb (diff) |
mmc: dw_mmc: exynos: Staticize dw_mci_exynos_pmops
'dw_mci_exynos_pmops' is local to this file.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
Acked-by: Seungwon Jeon <tgih.jun@samsung.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Chris Ball <chris@printf.net>
-rw-r--r-- | drivers/mmc/host/dw_mmc-exynos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/dw_mmc-exynos.c b/drivers/mmc/host/dw_mmc-exynos.c index a67e784b3a95..0fbc53ac7eae 100644 --- a/drivers/mmc/host/dw_mmc-exynos.c +++ b/drivers/mmc/host/dw_mmc-exynos.c | |||
@@ -425,7 +425,7 @@ static int dw_mci_exynos_probe(struct platform_device *pdev) | |||
425 | return dw_mci_pltfm_register(pdev, drv_data); | 425 | return dw_mci_pltfm_register(pdev, drv_data); |
426 | } | 426 | } |
427 | 427 | ||
428 | const struct dev_pm_ops dw_mci_exynos_pmops = { | 428 | static const struct dev_pm_ops dw_mci_exynos_pmops = { |
429 | SET_SYSTEM_SLEEP_PM_OPS(dw_mci_exynos_suspend, dw_mci_exynos_resume) | 429 | SET_SYSTEM_SLEEP_PM_OPS(dw_mci_exynos_suspend, dw_mci_exynos_resume) |
430 | .resume_noirq = dw_mci_exynos_resume_noirq, | 430 | .resume_noirq = dw_mci_exynos_resume_noirq, |
431 | .thaw_noirq = dw_mci_exynos_resume_noirq, | 431 | .thaw_noirq = dw_mci_exynos_resume_noirq, |