summaryrefslogtreecommitdiffstats
path: root/package/broadcom-diag/src
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-08-04 09:04:55 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-08-04 09:04:55 +0000
commitecc24b8c0b2d626b1a4939711471718e47b534ff (patch)
tree8da88652fc3eab0a55becffd4c056851f7a3436a /package/broadcom-diag/src
parent1891583c5ae22ebb01630770f20de32537823431 (diff)
Add support for the D-Link DWL-3150
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8335 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/broadcom-diag/src')
-rw-r--r--package/broadcom-diag/src/diag.c16
1 files changed, 15 insertions, 1 deletions
diff --git a/package/broadcom-diag/src/diag.c b/package/broadcom-diag/src/diag.c
index 6a70ed002..2b1061db0 100644
--- a/package/broadcom-diag/src/diag.c
+++ b/package/broadcom-diag/src/diag.c
@@ -113,6 +113,7 @@ enum {
/* D-Link */
DIR130,
DIR330,
+ DWL3150,
};
static void __init bcm4780_init(void) {
@@ -579,6 +580,16 @@ static struct platform_t __initdata platforms[] = {
{ .name = "blue", .gpio = 1 << 6},
},
},
+ [DWL3150] = {
+ .name = "D-Link DWL-3150",
+ .buttons = {
+ { .name = "reset", .gpio = 1 << 7},
+ },
+ .leds = {
+ { .name = "diag", .gpio = 1 << 2},
+ { .name = "status", .gpio = 1 << 1},
+ },
+ },
};
static struct platform_t __init *platform_detect(void)
@@ -664,7 +675,7 @@ static struct platform_t __init *platform_detect(void)
return &platforms[WL500GD];
}
- if (!strcmp(boardnum, "10496"))
+ if (!strcmp(boardnum, "10496") && !strcmp(boardtype, "0x467"))
return &platforms[USR5461];
} else { /* PMON based - old stuff */
@@ -715,6 +726,9 @@ static struct platform_t __init *platform_detect(void)
if (!strncmp(boardnum, "04FN52", 6)) /* SimpleTech SimpleShare */
return &platforms[STI_NAS];
+ if (!strcmp(getvar("boardnum"), "10") && !strcmp(getvar("boardrev"), "0x13")) /* D-Link DWL-3150 */
+ return &platforms[DWL3150];
+
/* not found */
return NULL;
}