fix adm switch misdetection, which led to bogus button events that caused the system to shut down

SVN-Revision: 9555
This commit is contained in:
Felix Fietkau 2007-11-16 03:11:09 +00:00
parent 67dd9a73dc
commit e3ecefbd23
2 changed files with 7 additions and 7 deletions

View file

@ -738,7 +738,7 @@ static struct platform_t __init *platform_detect(void)
return &platforms[WR850GV2V3];
}
if (!strcmp(boardnum, "44")) { /* Trendware TEW-411BRP+ */
if (!strcmp(boardnum, "44") && !strcmp(getvar("boardflags"),"0x0388")) { /* Trendware TEW-411BRP+ */
return &platforms[TEW411BRPP];
}

View file

@ -500,7 +500,7 @@ static int detect_adm(void)
int boardflags = atoi(nvram_get("boardflags"));
int boardnum = atoi(nvram_get("boardnum"));
if (boardnum == 44) { /* Trendware TEW-411BRP+ */
if ((boardnum == 44) && (boardflags == 0x0388)) { /* Trendware TEW-411BRP+ */
ret = 1;
eecs = get_gpiopin("adm_eecs", 2);