From: Hauke Mehrtens Date: Sat, 3 Aug 2013 17:09:39 +0000 (+0000) Subject: broadcom-diag: add gpio config for Linksys E4200v1 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=fa19b620269125994d90fc91e49153668999c21b broadcom-diag: add gpio config for Linksys E4200v1 GPIO for Linksys E4200v1, tested and works. This closes #13454 and #13894 Signed-off-by: Cezary Jackiewicz Signed-off-by: Hauke Mehrtens SVN-Revision: 37666 --- diff --git a/package/kernel/broadcom-diag/src/diag.c b/package/kernel/broadcom-diag/src/diag.c index 58d6755389..e2c26c889f 100644 --- a/package/kernel/broadcom-diag/src/diag.c +++ b/package/kernel/broadcom-diag/src/diag.c @@ -91,6 +91,7 @@ enum { E1000V1, E3000V1, E3200V1, + E4200V1, /* ASUS */ WLHDD, @@ -496,6 +497,16 @@ static struct platform_t __initdata platforms[] = { { .name = "power", .gpio = 1 << 3, .polarity = REVERSE }, /* Power LED */ }, }, + [E4200V1] = { + .name = "Linksys E4200 V1", + .buttons = { + { .name = "reset", .gpio = 1 << 6 }, + { .name = "wps", .gpio = 1 << 4 }, + }, + .leds = { + { .name = "power", .gpio = 1 << 5, .polarity = REVERSE }, + }, + }, /* Asus */ [WLHDD] = { .name = "ASUS WL-HDD", @@ -1348,6 +1359,8 @@ static struct platform_t __init *platform_detect(void) return &platforms[E3000V1]; case BCM47XX_BOARD_LINKSYS_E3200V1: return &platforms[E3200V1]; + case BCM47XX_BOARD_LINKSYS_E4200V1: + return &platforms[E4200V1]; case BCM47XX_BOARD_LINKSYS_WRT150NV1: return &platforms[WRT150NV1]; case BCM47XX_BOARD_LINKSYS_WRT150NV11: