From: Arvind Yadav Date: Tue, 8 Aug 2017 09:23:59 +0000 (+0530) Subject: staging: ccree: constify dev_pm_ops structures. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=22d82cb952f3c949078c6df4b0a5ea719b18cadc;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git staging: ccree: constify dev_pm_ops structures. dev_pm_ops are not supposed to change at runtime. All functions working with dev_pm_ops provided by work with const dev_pm_ops. So mark the non-const structs as const. Signed-off-by: Arvind Yadav Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ccree/ssi_driver.c b/drivers/staging/ccree/ssi_driver.c index 88b68c81556c..9c6f1200c130 100644 --- a/drivers/staging/ccree/ssi_driver.c +++ b/drivers/staging/ccree/ssi_driver.c @@ -550,7 +550,7 @@ static int cc7x_remove(struct platform_device *plat_dev) } #if defined(CONFIG_PM_RUNTIME) || defined(CONFIG_PM_SLEEP) -static struct dev_pm_ops arm_cc7x_driver_pm = { +static const struct dev_pm_ops arm_cc7x_driver_pm = { SET_RUNTIME_PM_OPS(ssi_power_mgr_runtime_suspend, ssi_power_mgr_runtime_resume, NULL) }; #endif