--- zzzz-none-000/linux-2.4.17/net/bridge/br.c 2001-10-17 21:16:39.000000000 +0000 +++ sangam-fb-322/linux-2.4.17/net/bridge/br.c 2004-11-24 13:22:09.000000000 +0000 @@ -5,7 +5,7 @@ * Authors: * Lennert Buytenhek * - * $Id: br.c,v 1.46 2001/10/02 02:22:36 davem Exp $ + * $Id: br.c,v 1.1.1.1 2003/06/23 22:18:44 jharrell Exp $ * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -40,6 +40,7 @@ static int __init br_init(void) { + extern int wb_init (void); printk(KERN_INFO "NET4: Ethernet Bridge 008 for NET4.0\n"); br_handle_frame_hook = br_handle_frame; @@ -52,6 +53,7 @@ #endif register_netdevice_notifier(&br_device_notifier); + wb_init(); return 0; } @@ -69,6 +71,8 @@ static void __exit br_deinit(void) { + extern void wb_deinit(void); + wb_deinit(); unregister_netdevice_notifier(&br_device_notifier); br_call_ioctl_atomic(__br_clear_ioctl_hook); net_call_rx_atomic(__br_clear_frame_hook); @@ -82,4 +86,4 @@ module_init(br_init) module_exit(br_deinit) -MODULE_LICENSE("GPL"); +/*--- MODULE_LICENSE("GPL"); ---*/