aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2015-03-17 13:34:37 -0400
committerKukjin Kim <kgene@kernel.org>2015-03-17 13:34:37 -0400
commit7383833784e9ce894563d4827ea79ab41fadfbd7 (patch)
treef4e9a8c43461a85cf9b43212ed01db92686d33fc
parent8c8a251130f173a69b7df4c3225668e39708f743 (diff)
ARM: EXYNOS: Constify exynos_pm_data array
The 'exynos5420_pm_data' is not modified and can be made const. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Reviewed-by: Pankaj Dubey <pankaj.dubey@samsung.com> Signed-off-by: Kukjin Kim <kgene@kernel.org>
-rw-r--r--arch/arm/mach-exynos/suspend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/suspend.c b/arch/arm/mach-exynos/suspend.c
index f2f1201d8d33..3800fd3d7760 100644
--- a/arch/arm/mach-exynos/suspend.c
+++ b/arch/arm/mach-exynos/suspend.c
@@ -576,7 +576,7 @@ static const struct exynos_pm_data exynos5250_pm_data = {
576 .cpu_suspend = exynos_cpu_suspend, 576 .cpu_suspend = exynos_cpu_suspend,
577}; 577};
578 578
579static struct exynos_pm_data exynos5420_pm_data = { 579static const struct exynos_pm_data exynos5420_pm_data = {
580 .wkup_irq = exynos5250_wkup_irq, 580 .wkup_irq = exynos5250_wkup_irq,
581 .wake_disable_mask = (0x7F << 7) | (0x1F << 1), 581 .wake_disable_mask = (0x7F << 7) | (0x1F << 1),
582 .release_ret_regs = exynos5420_release_ret_regs, 582 .release_ret_regs = exynos5420_release_ret_regs,