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

[PATCH] ARM: OMAP: H3 leds

Support for LEDs on H3 ... "disco led" on the mainboard, and
four debug board leds act as "red" "amber" "blue" and "green"
through /sys/devices/system/leds/leds0/event commands.
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
parent 5425c4f0
...@@ -23,6 +23,7 @@ endif ...@@ -23,6 +23,7 @@ endif
# LEDs support # LEDs support
led-$(CONFIG_MACH_OMAP_H2) += leds-h2p2-debug.o led-$(CONFIG_MACH_OMAP_H2) += leds-h2p2-debug.o
led-$(CONFIG_MACH_OMAP_H3) += leds-h2p2-debug.o
led-$(CONFIG_MACH_OMAP_INNOVATOR) += leds-innovator.o led-$(CONFIG_MACH_OMAP_INNOVATOR) += leds-innovator.o
led-$(CONFIG_MACH_OMAP_PERSEUS2) += leds-h2p2-debug.o led-$(CONFIG_MACH_OMAP_PERSEUS2) += leds-h2p2-debug.o
led-$(CONFIG_MACH_OMAP_OSK) += leds-osk.o led-$(CONFIG_MACH_OMAP_OSK) += leds-osk.o
......
...@@ -20,7 +20,9 @@ omap_leds_init(void) ...@@ -20,7 +20,9 @@ omap_leds_init(void)
if (machine_is_omap_innovator()) if (machine_is_omap_innovator())
leds_event = innovator_leds_event; leds_event = innovator_leds_event;
else if (machine_is_omap_h2() || machine_is_omap_perseus2()) else if (machine_is_omap_h2()
|| machine_is_omap_h3()
|| machine_is_omap_perseus2())
leds_event = h2p2_dbg_leds_event; leds_event = h2p2_dbg_leds_event;
else if (machine_is_omap_osk()) else if (machine_is_omap_osk())
...@@ -30,6 +32,7 @@ omap_leds_init(void) ...@@ -30,6 +32,7 @@ omap_leds_init(void)
return -1; return -1;
if (machine_is_omap_h2() if (machine_is_omap_h2()
|| machine_is_omap_h3()
|| machine_is_omap_perseus2() || machine_is_omap_perseus2()
|| machine_is_omap_osk()) { || machine_is_omap_osk()) {
......
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