mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-19 03:51:32 +02:00
[package] fix nvram_get checking on non-WGT634U (#4975)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15319 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
c6de2c0d2f
commit
176570cee9
@ -70,6 +70,7 @@
|
|||||||
|
|
||||||
|
|
||||||
extern char *nvram_get(const char *name);
|
extern char *nvram_get(const char *name);
|
||||||
|
#define getvar(str) (nvram_get(str)?:"")
|
||||||
|
|
||||||
/* Data structure for a Roboswitch device. */
|
/* Data structure for a Roboswitch device. */
|
||||||
struct robo_switch {
|
struct robo_switch {
|
||||||
@ -275,7 +276,7 @@ static int robo_switch_enable(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* WAN port LED, except for Netgear WGT634U */
|
/* 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);
|
robo_write16(ROBO_CTRL_PAGE, 0x16, 0x1F);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user