X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=package%2Fbroadcom-diag%2Fsrc%2Fdiag.c;h=bb25d57581e84fd3dcba81efaacb7dac5ec073d9;hb=7790289f3e47f73861913e1ce72e26a853456dd5;hp=b0def22e46bd459888f937a252a966d2b9cd21c1;hpb=a8b83afe372c03575f4de568df81d7a7c2d742d0;p=openwrt%2Fopenwrt.git diff --git a/package/broadcom-diag/src/diag.c b/package/broadcom-diag/src/diag.c index b0def22e46..bb25d57581 100644 --- a/package/broadcom-diag/src/diag.c +++ b/package/broadcom-diag/src/diag.c @@ -91,6 +91,9 @@ enum { /* Belkin */ BELKIN_UNKNOWN, + + /* Trendware */ + TEW411BRPP, }; static struct platform_t __initdata platforms[] = { @@ -416,6 +419,18 @@ static struct platform_t __initdata platforms[] = { { .name = "connected", .gpio = 1 << 0, .polarity = NORMAL }, }, }, + /* Trendware */ + [TEW411BRPP] = { + .name = "Trendware TEW411BRP+", + .buttons = { + { /* No usable buttons */ }, + }, + .leds = { + { .name = "power", .gpio = 1 << 7, .polarity = NORMAL }, + { .name = "wlan", .gpio = 1 << 1, .polarity = NORMAL }, + { .name = "bridge", .gpio = 1 << 6, .polarity = NORMAL }, + }, + }, }; static struct platform_t __init *platform_detect(void) @@ -509,6 +524,10 @@ static struct platform_t __init *platform_detect(void) return &platforms[WR850GV2V3]; } + if (!strcmp(boardnum, "44")) { /* Trendware TEW-411BRP+ */ + return &platforms[TEW411BRPP]; + } + /* not found */ return NULL; }