aboutsummaryrefslogtreecommitdiffstats
path: root/package/switch/src/switch-core.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-06-15 11:10:27 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-06-15 11:10:27 +0000
commit40990382e5823fc3d6a50374cfb989615e143c14 (patch)
tree99dfe44d2d4c35b2f542151d1da292f5f5c0a7f5 /package/switch/src/switch-core.h
parent9621d872ca496eadb79399d0351abf96abc35338 (diff)
downloadupstream-40990382e5823fc3d6a50374cfb989615e143c14.tar.gz
upstream-40990382e5823fc3d6a50374cfb989615e143c14.tar.bz2
upstream-40990382e5823fc3d6a50374cfb989615e143c14.zip
(4/6) bcm57xx: switch-core.c/switch-robo.c check for port already registered
This patch prevents switch-robo.c from attempting robo_probe on a port that is already registered. robo_probe will adjust kernel reference counts if it detects a switch on the port. If this patch wasn't applied, the wrt350n would hang on reboot, waiting for the network driver reference count to reach zero indefinitely. Signed-off-by: Ben Pfountz <netprince (at) vt (dot) edu> SVN-Revision: 11469
Diffstat (limited to 'package/switch/src/switch-core.h')
-rw-r--r--package/switch/src/switch-core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/package/switch/src/switch-core.h b/package/switch/src/switch-core.h
index 5a64efb752..31c81f6ed7 100644
--- a/package/switch/src/switch-core.h
+++ b/package/switch/src/switch-core.h
@@ -42,6 +42,7 @@ typedef struct {
} switch_vlan_config;
+extern int switch_device_registered (char* device);
extern int switch_register_driver(switch_driver *driver);
extern void switch_unregister_driver(char *name);
extern switch_vlan_config *switch_parse_vlan(switch_driver *driver, char *buf);