diff options
author | Dmitry Baryshkov <dbaryshkov@gmail.com> | 2008-04-19 10:42:06 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-04-19 11:29:09 +0100 |
commit | c546106cc15d300a5b3eba5a514c9238bb6593e8 (patch) | |
tree | 789227d948c7e32a76263954457ebda3800de132 /arch/arm | |
parent | ba4eb7e60b11eba1ccd89d448e6d87d98df95da8 (diff) | |
download | linux-3.10-c546106cc15d300a5b3eba5a514c9238bb6593e8.tar.gz linux-3.10-c546106cc15d300a5b3eba5a514c9238bb6593e8.tar.bz2 linux-3.10-c546106cc15d300a5b3eba5a514c9238bb6593e8.zip |
[ARM] 5002/1: tosa: add two more leds
This adds support for two more leds:
the wlan one (found in SL-6000W and SL-6000L) and
the blutooth one (found in SL-6000W).
Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-pxa/tosa.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/tosa.c b/arch/arm/mach-pxa/tosa.c index 1722093cfe5..6458f6d371d 100644 --- a/arch/arm/mach-pxa/tosa.c +++ b/arch/arm/mach-pxa/tosa.c @@ -432,6 +432,16 @@ static struct gpio_led tosa_gpio_leds[] = { .default_trigger = "nand-disk", .gpio = TOSA_GPIO_NOTE_LED, }, + { + .name = "tosa:dual:wlan", + .default_trigger = "none", + .gpio = TOSA_GPIO_WLAN_LED, + }, + { + .name = "tosa:blue:bluetooth", + .default_trigger = "none", + .gpio = TOSA_GPIO_BT_LED, + }, }; static struct gpio_led_platform_data tosa_gpio_leds_platform_data = { |