projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[atheros] export ar231x_gpiodev, needed for gpio-led/spi/i2c modules
[openwrt.git]
/
package
/
switch
/
src
/
switch-robo.c
diff --git
a/package/switch/src/switch-robo.c
b/package/switch/src/switch-robo.c
index
5733d50
..
a0051a3
100644
(file)
--- a/
package/switch/src/switch-robo.c
+++ b/
package/switch/src/switch-robo.c
@@
-68,6
+68,14
@@
#define bool int
#endif
#define bool int
#endif
+/* Only available on brcm-2.4/brcm47xx */
+#ifdef BROADCOM
+extern char *nvram_get(const char *name);
+#define getvar(str) (nvram_get(str)?:"")
+#else
+#define getvar(str) ""
+#endif
+
/* Data structure for a Roboswitch device. */
struct robo_switch {
char *device; /* The device name string (ethX) */
/* Data structure for a Roboswitch device. */
struct robo_switch {
char *device; /* The device name string (ethX) */
@@
-271,8
+279,9
@@
static int robo_switch_enable(void)
robo_write16(ROBO_CTRL_PAGE, i, 0);
}
robo_write16(ROBO_CTRL_PAGE, i, 0);
}
- /* WAN port LED */
- robo_write16(ROBO_CTRL_PAGE, 0x16, 0x1F);
+ /* WAN port LED, except for Netgear WGT634U */
+ if (strcmp(getvar("nvram_type"), "cfe") != 0)
+ robo_write16(ROBO_CTRL_PAGE, 0x16, 0x1F);
return 0;
}
return 0;
}
This page took
0.024829 seconds
and
4
git commands to generate.