@@ -60,6 +60,12 @@ static struct gpio_led sheevaplug_led_pins[] = {
},
{
.name = "plug:green:health",
+ .default_trigger = "none",
+ .gpio = 48,
+ .active_low = 1,
+ },
+ {
+ .name = "plug:blue:health",
.default_trigger = "default-on",
.gpio = 49,
.active_low = 1,
@@ -82,7 +88,8 @@ static struct platform_device sheevaplug_leds = {
static unsigned int sheevaplug_mpp_config[] __initdata = {
MPP29_GPIO, /* USB Power Enable */
MPP46_GPIO, /* LED Red */
- MPP49_GPIO, /* LED */
+ MPP48_GPIO, /* LED Green */
+ MPP49_GPIO, /* LED Blue */
0
};
Also wire the green led to the right gpio. This has been tested on the standard SheevaPlug and eSATA SheevaPlug. Signed-off-by: Sean Young <sean@mess.org> --- arch/arm/mach-kirkwood/sheevaplug-setup.c | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-)