projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Asus WL-330gE Support
[openwrt.git]
/
package
/
broadcom-diag
/
src
/
diag.c
diff --git
a/package/broadcom-diag/src/diag.c
b/package/broadcom-diag/src/diag.c
index
e47f281
..
341880a
100644
(file)
--- a/
package/broadcom-diag/src/diag.c
+++ b/
package/broadcom-diag/src/diag.c
@@
-68,6
+68,7
@@
enum {
WLHDD,
WL300G,
WL320GE,
WLHDD,
WL300G,
WL320GE,
+ WL330GE,
WL500G,
WL500GD,
WL500GP,
WL500G,
WL500GD,
WL500GP,
@@
-307,6
+308,15
@@
static struct platform_t __initdata platforms[] = {
{ .name = "link", .gpio = 1 << 11, .polarity = REVERSE },
},
},
{ .name = "link", .gpio = 1 << 11, .polarity = REVERSE },
},
},
+ [WL330GE] = {
+ .name = "ASUS WL-330gE",
+ .buttons = {
+ { .name = "reset", .gpio = 1 << 2 },
+ },
+ .leds = {
+ { .name = "power", .gpio = 1 << 0, .polarity = REVERSE },
+ },
+ },
[WL500G] = {
.name = "ASUS WL-500g",
.buttons = {
[WL500G] = {
.name = "ASUS WL-500g",
.buttons = {
@@
-764,6
+774,8
@@
static struct platform_t __init *platform_detect(void)
return &platforms[WL520GC];
if (startswith(buf,"WL520GU-")) /* WL520GU-* */
return &platforms[WL520GU];
return &platforms[WL520GC];
if (startswith(buf,"WL520GU-")) /* WL520GU-* */
return &platforms[WL520GU];
+ if (startswith(buf,"WL330GE-")) /* WL330GE-* */
+ return &platforms[WL330GE];
}
/* Based on "ModelId" */
}
/* Based on "ModelId" */
This page took
0.031463 seconds
and
4
git commands to generate.