Add Trendware TEW-411BRplus (#1038)

SVN-Revision: 5764
This commit is contained in:
Florian Fainelli
2006-12-11 21:46:31 +00:00
parent a8b83afe37
commit 7790289f3e
2 changed files with 29 additions and 1 deletions

View File

@@ -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;
}