* [PATCH 1/2] MIPS: AR7: constify some arrays in gpio and prom code
@ 2011-11-15 19:23 Florian Fainelli
2011-11-15 19:23 ` [PATCH 2/2] MIPS: AR7: add LEDs layout for the Actiontec GT701 router Florian Fainelli
2011-11-15 23:04 ` [PATCH 1/2] MIPS: AR7: constify some arrays in gpio and prom code Ralf Baechle
0 siblings, 2 replies; 4+ messages in thread
From: Florian Fainelli @ 2011-11-15 19:23 UTC (permalink / raw)
To: ralf; +Cc: linux-mips, Florian Fainelli
Signed-off-by: Florian Fainelli <florian@openwrt.org>
---
arch/mips/ar7/gpio.c | 2 +-
arch/mips/ar7/prom.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/mips/ar7/gpio.c b/arch/mips/ar7/gpio.c
index bb571bc..d8dbd8f 100644
--- a/arch/mips/ar7/gpio.c
+++ b/arch/mips/ar7/gpio.c
@@ -217,7 +217,7 @@ struct titan_gpio_cfg {
u32 func;
};
-static struct titan_gpio_cfg titan_gpio_table[] = {
+static const struct titan_gpio_cfg titan_gpio_table[] = {
/* reg, start bit, mux value */
{4, 24, 1},
{4, 26, 1},
diff --git a/arch/mips/ar7/prom.c b/arch/mips/ar7/prom.c
index 8088c6f..a23adc4 100644
--- a/arch/mips/ar7/prom.c
+++ b/arch/mips/ar7/prom.c
@@ -69,7 +69,7 @@ struct psbl_rec {
u32 ffs_size;
};
-static __initdata char psp_env_version[] = "TIENV0.8";
+static const char psp_env_version[] __initconst = "TIENV0.8";
struct psp_env_chunk {
u8 num;
@@ -84,7 +84,7 @@ struct psp_var_map_entry {
char *value;
};
-static struct psp_var_map_entry psp_var_map[] = {
+static const struct psp_var_map_entry psp_var_map[] = {
{ 1, "cpufrequency" },
{ 2, "memsize" },
{ 3, "flashsize" },
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] MIPS: AR7: add LEDs layout for the Actiontec GT701 router
2011-11-15 19:23 [PATCH 1/2] MIPS: AR7: constify some arrays in gpio and prom code Florian Fainelli
@ 2011-11-15 19:23 ` Florian Fainelli
2011-11-15 23:04 ` Ralf Baechle
2011-11-15 23:04 ` [PATCH 1/2] MIPS: AR7: constify some arrays in gpio and prom code Ralf Baechle
1 sibling, 1 reply; 4+ messages in thread
From: Florian Fainelli @ 2011-11-15 19:23 UTC (permalink / raw)
To: ralf; +Cc: linux-mips, Florian Fainelli
Signed-off-by: Florian Fainelli <florian@openwrt.org>
---
arch/mips/ar7/platform.c | 37 +++++++++++++++++++++++++++++++++++++
1 files changed, 37 insertions(+), 0 deletions(-)
diff --git a/arch/mips/ar7/platform.c b/arch/mips/ar7/platform.c
index 33ffecf..e5f6fca 100644
--- a/arch/mips/ar7/platform.c
+++ b/arch/mips/ar7/platform.c
@@ -462,6 +462,40 @@ static struct gpio_led fb_fon_leds[] = {
},
};
+static struct gpio_led gt701_leds[] = {
+ {
+ .name = "inet:green",
+ .gpio = 13,
+ .active_low = 1,
+ },
+ {
+ .name = "usb",
+ .gpio = 12,
+ .active_low = 1,
+ },
+ {
+ .name = "inet:red",
+ .gpio = 9,
+ .active_low = 1,
+ },
+ {
+ .name = "power:red",
+ .gpio = 7,
+ .active_low = 1,
+ },
+ {
+ .name = "power:green",
+ .gpio = 8,
+ .active_low = 1,
+ .default_trigger = "default-on",
+ },
+ {
+ .name = "ethernet",
+ .gpio = 10,
+ .active_low = 1,
+ },
+};
+
static struct gpio_led_platform_data ar7_led_data;
static struct platform_device ar7_gpio_leds = {
@@ -503,6 +537,9 @@ static void __init detect_leds(void)
} else if (strstr(prid, "CYWM") || strstr(prid, "CYWL")) {
ar7_led_data.num_leds = ARRAY_SIZE(titan_leds);
ar7_led_data.leds = titan_leds;
+ } else if (strstr(prid, "GT701")) {
+ ar7_led_data.num_leds = ARRAY_SIZE(gt701_leds);
+ ar7_led_data.leds = gt701_leds;
}
}
--
1.7.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] MIPS: AR7: constify some arrays in gpio and prom code
2011-11-15 19:23 [PATCH 1/2] MIPS: AR7: constify some arrays in gpio and prom code Florian Fainelli
2011-11-15 19:23 ` [PATCH 2/2] MIPS: AR7: add LEDs layout for the Actiontec GT701 router Florian Fainelli
@ 2011-11-15 23:04 ` Ralf Baechle
1 sibling, 0 replies; 4+ messages in thread
From: Ralf Baechle @ 2011-11-15 23:04 UTC (permalink / raw)
To: Florian Fainelli; +Cc: linux-mips
Queued for 3.3. Thanks,
Ralf
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] MIPS: AR7: add LEDs layout for the Actiontec GT701 router
2011-11-15 19:23 ` [PATCH 2/2] MIPS: AR7: add LEDs layout for the Actiontec GT701 router Florian Fainelli
@ 2011-11-15 23:04 ` Ralf Baechle
0 siblings, 0 replies; 4+ messages in thread
From: Ralf Baechle @ 2011-11-15 23:04 UTC (permalink / raw)
To: Florian Fainelli; +Cc: linux-mips
Queued for 3.3. Thanks,
Ralf
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-11-15 23:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-15 19:23 [PATCH 1/2] MIPS: AR7: constify some arrays in gpio and prom code Florian Fainelli
2011-11-15 19:23 ` [PATCH 2/2] MIPS: AR7: add LEDs layout for the Actiontec GT701 router Florian Fainelli
2011-11-15 23:04 ` Ralf Baechle
2011-11-15 23:04 ` [PATCH 1/2] MIPS: AR7: constify some arrays in gpio and prom code Ralf Baechle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox