diff options
author | Florian Fainelli <florian@openwrt.org> | 2011-11-15 14:23:43 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2011-12-07 17:02:34 -0500 |
commit | edc9ded191f7075f2d9e7aa3c9e84c48bc4338b2 (patch) | |
tree | 92d57445a25a963579b4ea743786c5a9fe9c536c /arch/mips/ar7/gpio.c | |
parent | 5611cc4572e889b62a7b4c72a413536bf6a9c416 (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>
Diffstat (limited to 'arch/mips/ar7/gpio.c')
-rw-r--r-- | arch/mips/ar7/gpio.c | 2 |
1 files changed, 1 insertions, 1 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 | ||
220 | static struct titan_gpio_cfg titan_gpio_table[] = { | 220 | static 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}, |