浏览代码

ARM: OMAP2+: CM: make cm_ll_data structures as const

Make these const as they are only getting passed to the functions
cm_register and cm_unregister having the arguments as const.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Bhumika Goyal 7 年之前
父节点
当前提交
60af58cde4
共有 4 个文件被更改,包括 4 次插入4 次删除
  1. 1 1
      arch/arm/mach-omap2/cm2xxx.c
  2. 1 1
      arch/arm/mach-omap2/cm33xx.c
  3. 1 1
      arch/arm/mach-omap2/cm3xxx.c
  4. 1 1
      arch/arm/mach-omap2/cminst44xx.c

+ 1 - 1
arch/arm/mach-omap2/cm2xxx.c

@@ -385,7 +385,7 @@ void omap2xxx_cm_set_mod_dividers(u32 mpu, u32 dsp, u32 gfx, u32 core, u32 mdm)
  *
  *
  */
  */
 
 
-static struct cm_ll_data omap2xxx_cm_ll_data = {
+static const struct cm_ll_data omap2xxx_cm_ll_data = {
 	.split_idlest_reg	= &omap2xxx_cm_split_idlest_reg,
 	.split_idlest_reg	= &omap2xxx_cm_split_idlest_reg,
 	.wait_module_ready	= &omap2xxx_cm_wait_module_ready,
 	.wait_module_ready	= &omap2xxx_cm_wait_module_ready,
 };
 };

+ 1 - 1
arch/arm/mach-omap2/cm33xx.c

@@ -342,7 +342,7 @@ struct clkdm_ops am33xx_clkdm_operations = {
 	.clkdm_clk_disable	= am33xx_clkdm_clk_disable,
 	.clkdm_clk_disable	= am33xx_clkdm_clk_disable,
 };
 };
 
 
-static struct cm_ll_data am33xx_cm_ll_data = {
+static const struct cm_ll_data am33xx_cm_ll_data = {
 	.wait_module_ready	= &am33xx_cm_wait_module_ready,
 	.wait_module_ready	= &am33xx_cm_wait_module_ready,
 	.wait_module_idle	= &am33xx_cm_wait_module_idle,
 	.wait_module_idle	= &am33xx_cm_wait_module_idle,
 	.module_enable		= &am33xx_cm_module_enable,
 	.module_enable		= &am33xx_cm_module_enable,

+ 1 - 1
arch/arm/mach-omap2/cm3xxx.c

@@ -662,7 +662,7 @@ void omap3_cm_save_scratchpad_contents(u32 *ptr)
  *
  *
  */
  */
 
 
-static struct cm_ll_data omap3xxx_cm_ll_data = {
+static const struct cm_ll_data omap3xxx_cm_ll_data = {
 	.split_idlest_reg	= &omap3xxx_cm_split_idlest_reg,
 	.split_idlest_reg	= &omap3xxx_cm_split_idlest_reg,
 	.wait_module_ready	= &omap3xxx_cm_wait_module_ready,
 	.wait_module_ready	= &omap3xxx_cm_wait_module_ready,
 };
 };

+ 1 - 1
arch/arm/mach-omap2/cminst44xx.c

@@ -512,7 +512,7 @@ struct clkdm_ops am43xx_clkdm_operations = {
 	.clkdm_xlate_address	= omap4_clkdm_xlate_address,
 	.clkdm_xlate_address	= omap4_clkdm_xlate_address,
 };
 };
 
 
-static struct cm_ll_data omap4xxx_cm_ll_data = {
+static const struct cm_ll_data omap4xxx_cm_ll_data = {
 	.wait_module_ready	= &omap4_cminst_wait_module_ready,
 	.wait_module_ready	= &omap4_cminst_wait_module_ready,
 	.wait_module_idle	= &omap4_cminst_wait_module_idle,
 	.wait_module_idle	= &omap4_cminst_wait_module_idle,
 	.module_enable		= &omap4_cminst_module_enable,
 	.module_enable		= &omap4_cminst_module_enable,