summaryrefslogtreecommitdiffstats
path: root/package/broadcom-diag
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-10-04 16:51:03 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-10-04 16:51:03 +0000
commit4a2e30239c0f67787cccedb26b06cae8c5d640a5 (patch)
tree80851fa8e3b23c4bb06c1a88bfe43a98da4fde46 /package/broadcom-diag
parent31800c29b03fe4268985b9761b4ccdabfad7a041 (diff)
Add proper LED support to broadcom-diag for the Asus WL-320gE/gP routers (#4062)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12855 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/broadcom-diag')
-rw-r--r--package/broadcom-diag/src/diag.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/package/broadcom-diag/src/diag.c b/package/broadcom-diag/src/diag.c
index cde681a0f..5ffa68f99 100644
--- a/package/broadcom-diag/src/diag.c
+++ b/package/broadcom-diag/src/diag.c
@@ -67,6 +67,7 @@ enum {
/* ASUS */
WLHDD,
WL300G,
+ WL320GE,
WL500G,
WL500GD,
WL500GP,
@@ -295,6 +296,17 @@ static struct platform_t __initdata platforms[] = {
{ .name = "power", .gpio = 1 << 0, .polarity = REVERSE },
},
},
+ [WL320GE] = {
+ .name = "ASUS WL-320gE/WL-320gP",
+ .buttons = {
+ { .name = "reset", .gpio = 1 << 6 },
+ },
+ .leds = {
+ { .name = "wlan", .gpio = 1 << 0, .polarity = REVERSE },
+ { .name = "power", .gpio = 1 << 2, .polarity = REVERSE },
+ { .name = "link", .gpio = 1 << 11, .polarity = REVERSE },
+ },
+ },
[WL500G] = {
.name = "ASUS WL-500g",
.buttons = {
@@ -825,6 +837,8 @@ static struct platform_t __init *platform_detect(void)
return &platforms[WL500GP];
else if (!strcmp(boardtype,"0x0472"))
return &platforms[WL500W];
+ else if (!strcmp(boardtype,"0x467"))
+ return &platforms[WL320GE];
else
return &platforms[WL500GD];
}