From cb1ca770177b9d0f522476197b22562447e7169b Mon Sep 17 00:00:00 2001 From: David Brownell Date: Mon, 4 Aug 2008 23:56:15 -0700 Subject: [PATCH] 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 --- arch/arm/mach-omap2/board-omap3beagle.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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, }, }; -- 2.41.0