| Kernel v2.4.6 /net/socket.c |
|---|
 2.4.6
 net
 socket.c
diff -u --recursive --new-file v2.4.5/linux/net/socket.c linux/net/socket.c
--- v2.4.5/linux/net/socket.c Wed Apr 25 16:13:50 2001
+++ linux/net/socket.c Mon Jun 11 19:15:27 2001
@@ -1668,6 +1668,10 @@
extern void wanrouter_init(void);
#endif
+#ifdef CONFIG_BLUEZ
+extern void bluez_init(void);
+#endif
+
void __init sock_init(void)
{
int i;
@@ -1726,6 +1730,10 @@
#endif
#ifdef CONFIG_NETFILTER
netfilter_init();
+#endif
+
+#ifdef CONFIG_BLUEZ
+ bluez_init();
#endif
}
|