aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2011-11-15 14:23:43 -0500
committerRalf Baechle <ralf@linux-mips.org>2011-12-07 17:02:34 -0500
commitedc9ded191f7075f2d9e7aa3c9e84c48bc4338b2 (patch)
tree92d57445a25a963579b4ea743786c5a9fe9c536c
parent5611cc4572e889b62a7b4c72a413536bf6a9c416 (diff)
MIPS: AR7: constify some arrays in gpio and prom code
Signed-off-by: Florian Fainelli <florian@openwrt.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/2980/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r--arch/mips/ar7/gpio.c2
-rw-r--r--arch/mips/ar7/prom.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/ar7/gpio.c b/arch/mips/ar7/gpio.c
index bb571bcdb8f2..d8dbd8f0c1d2 100644
--- a/arch/mips/ar7/gpio.c
+++ b/arch/mips/ar7/gpio.c
@@ -217,7 +217,7 @@ struct titan_gpio_cfg {
217 u32 func; 217 u32 func;
218}; 218};
219 219
220static struct titan_gpio_cfg titan_gpio_table[] = { 220static const struct titan_gpio_cfg titan_gpio_table[] = {
221 /* reg, start bit, mux value */ 221 /* reg, start bit, mux value */
222 {4, 24, 1}, 222 {4, 24, 1},
223 {4, 26, 1}, 223 {4, 26, 1},
diff --git a/arch/mips/ar7/prom.c b/arch/mips/ar7/prom.c
index 8088c6fdb83e..a23adc49d50f 100644
--- a/arch/mips/ar7/prom.c
+++ b/arch/mips/ar7/prom.c
@@ -69,7 +69,7 @@ struct psbl_rec {
69 u32 ffs_size; 69 u32 ffs_size;
70}; 70};
71 71
72static __initdata char psp_env_version[] = "TIENV0.8"; 72static const char psp_env_version[] __initconst = "TIENV0.8";
73 73
74struct psp_env_chunk { 74struct psp_env_chunk {
75 u8 num; 75 u8 num;
@@ -84,7 +84,7 @@ struct psp_var_map_entry {
84 char *value; 84 char *value;
85}; 85};
86 86
87static struct psp_var_map_entry psp_var_map[] = { 87static const struct psp_var_map_entry psp_var_map[] = {
88 { 1, "cpufrequency" }, 88 { 1, "cpufrequency" },
89 { 2, "memsize" }, 89 { 2, "memsize" },
90 { 3, "flashsize" }, 90 { 3, "flashsize" },