[package] fix nvram_get checking on non-WGT634U (#4975)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15319 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Florian Fainelli 2009-04-21 09:25:51 +00:00
parent 8777b09f78
commit e6654449d4
1 changed files with 2 additions and 1 deletions

View File

@ -70,6 +70,7 @@
extern char *nvram_get(const char *name);
#define getvar(str) (nvram_get(str)?:"")
/* Data structure for a Roboswitch device. */
struct robo_switch {
@ -275,7 +276,7 @@ static int robo_switch_enable(void)
}
/* WAN port LED, except for Netgear WGT634U */
if (strcmp(nvram_get("nvram_type"), "cfe"))
if (strcmp(getvar("nvram_type"), "cfe") != 0)
robo_write16(ROBO_CTRL_PAGE, 0x16, 0x1F);
return 0;