From: David Brownell Date: Tue, 5 Aug 2008 06:56:15 +0000 (-0700) Subject: beagle LED fixes X-Git-Tag: v2.6.26-omap1~51 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=cb1ca770177b9d0f522476197b22562447e7169b;p=linux-2.6-omap-h63xx.git beagle LED fixes Signed-off-by: David Brownell Acked-by: Koen Kooi Update and fix Beagle LED declarations: gpios for USR0 and USR1 were swapped, and their names don't match docs or silksreen. Signed-off-by: David Brownell Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index fdce787e8ae..40feef1bc05 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c @@ -75,14 +75,14 @@ static struct omap_lcd_config omap3_beagle_lcd_config __initdata = { struct gpio_led gpio_leds[] = { { - .name = "beagleboard::led0", + .name = "beagleboard::usr0", .default_trigger = "none", - .gpio = 149, + .gpio = 150, }, { - .name = "beagleboard::led1", + .name = "beagleboard::usr1", .default_trigger = "none", - .gpio = 150, + .gpio = 149, }, };