diag: add support for the buffalo wzr-rs-g54
authorFelix Fietkau <nbd@openwrt.org>
Wed, 22 Nov 2006 20:58:18 +0000 (20:58 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Wed, 22 Nov 2006 20:58:18 +0000 (20:58 +0000)
SVN-Revision: 5616

openwrt/target/linux/package/diag/src/diag.c

index 41e4b9777f07f3c5e1b62ee94059b69cbdf3cced..7d2fc93a55d6a60e168e0da97cb8da9e33bfe236 100644 (file)
@@ -63,6 +63,7 @@ enum {
        WHR_HP_G54,
        WHR2_A54G54,
        WLA2_G54L,
+       WZR_RS_G54,
        BUFFALO_UNKNOWN,
        BUFFALO_UNKNOWN_4710,
 
@@ -273,6 +274,16 @@ static struct platform_t __init platforms[] = {
                        { .name = "diag",       .gpio = 1 << 1, .polarity = REVERSE },
                },
        },
+       [WZR_RS_G54] = {
+               .name           = "Buffalo WZR-RS-G54",
+               .buttons        = {
+                       { .name = "ses",        .gpio = 1 << 0 },
+                       { .name = "reset",      .gpio = 1 << 7 },
+               },
+               .leds           = {
+                       { .name = "diag",       .gpio = 1 << 1, .polarity = REVERSE },
+               },
+       },
        [BUFFALO_UNKNOWN] = {
                .name           = "Buffalo (unknown)",
                .buttons        = {
@@ -462,6 +473,8 @@ static struct platform_t __init *platform_detect(void)
                        return &platforms[WHR_G54S];
                if (!strcmp(buf, "290441dd"))
                        return &platforms[WHR2_A54G54];
+               if (!strcmp(buf, "30083"))
+                       return &platforms[WZR_RS_G54];
        }
 
        if (buf || !strcmp(boardnum, "00")) {/* probably buffalo */