aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2008-01-04 02:59:10 +0000
committerFlorian Fainelli <florian@openwrt.org>2008-01-04 02:59:10 +0000
commit34c3a9722355c6f0b9d1d2ccd630edfa5fc37bca (patch)
treee132234694e61448e16e5d21daf5e5df830b0d58 /target
parentcdf0d26d83d95599d821c4e523f9ca826b3961c2 (diff)
downloadmaster-187ad058-34c3a9722355c6f0b9d1d2ccd630edfa5fc37bca.tar.gz
master-187ad058-34c3a9722355c6f0b9d1d2ccd630edfa5fc37bca.tar.bz2
master-187ad058-34c3a9722355c6f0b9d1d2ccd630edfa5fc37bca.zip
Add dg834 leds support from #2817
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10105 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/ar7/files/arch/mips/ar7/platform.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/target/linux/ar7/files/arch/mips/ar7/platform.c b/target/linux/ar7/files/arch/mips/ar7/platform.c
index 9be9f0971b..0668bc273a 100644
--- a/target/linux/ar7/files/arch/mips/ar7/platform.c
+++ b/target/linux/ar7/files/arch/mips/ar7/platform.c
@@ -329,6 +329,14 @@ static struct gpio_led dsl502t_leds[] = {
{ .name = "usb", .gpio = 12, .active_low = 1, },
};
+static struct gpio_led dg834g_leds[] = {
+ { .name = "ppp", .gpio = 6, .active_low = 1, },
+ { .name = "status", .gpio = 7, .active_low = 1, },
+ { .name = "adsl", .gpio = 8, .active_low = 1, },
+ { .name = "wifi", .gpio = 12, .active_low = 1, },
+ { .name = "power", .gpio = 14, .active_low = 1, },
+};
+
static struct gpio_led fb_sl_leds[] = {
{ .name = "1", .gpio = 7, },
{ .name = "2", .gpio = 13, .active_low = 1, },
@@ -421,6 +429,9 @@ static void __init detect_leds(void)
} else if (!strcmp(prId, "AR7RD") && usb_prod != NULL && strstr(usb_prod, "DSL-502T")) {
ar7_led_data.num_leds = ARRAY_SIZE(dsl502t_leds);
ar7_led_data.leds = dsl502t_leds;
+ } else if (strstr(prId, "DG834")) {
+ ar7_led_data.num_leds = ARRAY_SIZE(dg834g_leds);
+ ar7_led_data.leds = dg834g_leds;
}
}