From: Arvind Yadav Date: Wed, 30 Aug 2017 16:48:20 +0000 (+0530) Subject: powerpc/4xx: Constify cpm_suspend_ops X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7def9a2418430a8af2a56023769ccdcdea7cd7e1;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git powerpc/4xx: Constify cpm_suspend_ops struct 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: Michael Ellerman --- diff --git a/arch/powerpc/platforms/4xx/cpm.c b/arch/powerpc/platforms/4xx/cpm.c index ac7af8b5ffa1..53ff81ca8a3c 100644 --- a/arch/powerpc/platforms/4xx/cpm.c +++ b/arch/powerpc/platforms/4xx/cpm.c @@ -240,7 +240,7 @@ static int cpm_suspend_enter(suspend_state_t state) return 0; } -static struct platform_suspend_ops cpm_suspend_ops = { +static const struct platform_suspend_ops cpm_suspend_ops = { .valid = cpm_suspend_valid, .enter = cpm_suspend_enter, };