Commit cb1ca770 authored by David Brownell's avatar David Brownell Committed by Tony Lindgren

beagle LED fixes

Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Acked-by: default avatarKoen Kooi <koen@openembedded.org>

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: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 80b54201
......@@ -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,
},
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment