WL500GP,
WL500GPV2,
WL500W,
+ WL520GC,
WL520GU,
ASUS_4702,
WL700GE,
{ .name = "power", .gpio = 1 << 5, .polarity = REVERSE },
},
},
+ [WL520GC] = {
+ .name = "ASUS WL-520GC",
+ .buttons = {
+ { .name = "reset", .gpio = 1 << 2 },
+ { .name = "ses", .gpio = 1 << 3 },
+ },
+ .leds = {
+ { .name = "power", .gpio = 1 << 0, .polarity = REVERSE },
+ { .name = "wlan", .gpio = 1 << 1, .polarity = REVERSE },
+ },
+ },
[WL520GU] = {
.name = "ASUS WL-520gU",
.buttons = {
if (buf = nvram_get("hardware_version")) {
if (startswith(buf,"WL500GPV2-")) /* WL500GPV2-* */
return &platforms[WL500GPV2];
+ if (startswith(buf,"WL520GC-")) /* WL520GU-* */
+ return &platforms[WL520GC];
if (startswith(buf,"WL520GU-")) /* WL520GU-* */
return &platforms[WL520GU];
}