diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-30 22:17:51 +0530 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2017-09-20 22:21:08 +0800 |
commit | 5cd6bc681582e283661be6c16034b6493b9a8683 (patch) | |
tree | 6d0123fc4df743f2640fb94fee8f38771aa1cc83 /arch/arm/mach-mxs | |
parent | 2bd6bf03f4c1c59381d62c61d03f6cc3fe71f66e (diff) | |
download | linux-5cd6bc681582e283661be6c16034b6493b9a8683.tar.bz2 |
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 <arvind.yadav.cs@gmail.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/mach-mxs')
-rw-r--r-- | arch/arm/mach-mxs/pm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mxs/pm.c b/arch/arm/mach-mxs/pm.c index 0170e99fd70f..6ae057c2cf9f 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, }; |