From: Arvind Yadav Date: Wed, 30 Aug 2017 16:47:51 +0000 (+0530) Subject: ARM: mxs: constify platform_suspend_ops X-Git-Tag: v4.15-rc1~76^2~6^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5cd6bc681582e283661be6c16034b6493b9a8683;p=thirdparty%2Fkernel%2Flinux.git ARM: mxs: constify platform_suspend_ops platform_suspend_ops are not supposed to change at runtime. Functions suspend_set_ops working with const platform_suspend_ops. So mark the non-const structs as const. Signed-off-by: Arvind Yadav Signed-off-by: Shawn Guo --- diff --git a/arch/arm/mach-mxs/pm.c b/arch/arm/mach-mxs/pm.c index 0170e99fd70fd..6ae057c2cf9fe 100644 --- a/arch/arm/mach-mxs/pm.c +++ b/arch/arm/mach-mxs/pm.c @@ -30,7 +30,7 @@ static int mxs_suspend_enter(suspend_state_t state) return 0; } -static struct platform_suspend_ops mxs_suspend_ops = { +static const struct platform_suspend_ops mxs_suspend_ops = { .enter = mxs_suspend_enter, .valid = suspend_valid_only_mem, };