Add dg834 leds support from #2817
authorFlorian Fainelli <florian@openwrt.org>
Fri, 4 Jan 2008 02:59:10 +0000 (02:59 +0000)
committerFlorian Fainelli <florian@openwrt.org>
Fri, 4 Jan 2008 02:59:10 +0000 (02:59 +0000)
SVN-Revision: 10105

target/linux/ar7/files/arch/mips/ar7/platform.c

index 9be9f0971be7d4f264d4858827d2b6f6f17cc0fa..0668bc273a327994986babecec3a7753071eb507 100644 (file)
@@ -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;
        }
 }