diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-10-16 13:08:24 +0300 |
---|---|---|
committer | Sekhar Nori <nsekhar@ti.com> | 2017-12-23 13:16:24 +0300 |
commit | ab41910dfd5ab8e90b6a93d8c17f39ce2dbb069d (patch) | |
tree | beb9df7238a7b2aecc22271c6d4aec9f73fbaa9b /arch/arm/mach-davinci/dm646x.c | |
parent | 1a6d490b45e709ad45f4d7457acd435552698ed4 (diff) | |
download | linux-ab41910dfd5ab8e90b6a93d8c17f39ce2dbb069d.tar.xz |
ARM: davinci: make davinci_soc_info structures const
Make davinci_soc_info structures const as they are either passed to the
function davinci_common_init having the argument as const or their field
cpu_clks of type struct clk_lookup * is passed to the function
davinci_clk_init.
So, the fields are never modified and the structures can be const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
[nsekhar@ti.com: minor commit message adjustment]
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Diffstat (limited to 'arch/arm/mach-davinci/dm646x.c')
-rw-r--r-- | arch/arm/mach-davinci/dm646x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/dm646x.c b/arch/arm/mach-davinci/dm646x.c index da21353cac45..b72e04ad81ce 100644 --- a/arch/arm/mach-davinci/dm646x.c +++ b/arch/arm/mach-davinci/dm646x.c @@ -882,7 +882,7 @@ struct platform_device dm646x_serial_device[] = { } }; -static struct davinci_soc_info davinci_soc_info_dm646x = { +static const struct davinci_soc_info davinci_soc_info_dm646x = { .io_desc = dm646x_io_desc, .io_desc_num = ARRAY_SIZE(dm646x_io_desc), .jtag_id_reg = 0x01c40028, |