[NET]: Fix sock_init() return value.
authorDavid S. Miller <davem@sunset.davemloft.net>
Thu, 22 Dec 2005 20:58:55 +0000 (12:58 -0800)
committerDavid S. Miller <davem@sunset.davemloft.net>
Tue, 3 Jan 2006 21:11:17 +0000 (13:11 -0800)
It needs to return zero now that it is an initcall.

Also, net/nonet.c no longer needs a dummy sock_init().

Signed-off-by: David S. Miller <davem@davemloft.net>
net/nonet.c
net/socket.c

index e5241dceaa571d897dfdf2db6c938e6f334af10b..1230f0ae832e9d52bdd50e4411a56e0ebd795510 100644 (file)
 #include <linux/init.h>
 #include <linux/kernel.h>
 
-void __init sock_init(void)
-{
-       printk(KERN_INFO "Linux NoNET1.0 for Linux 2.6\n");
-}
-
 static int sock_no_open(struct inode *irrelevant, struct file *dontcare)
 {
        return -ENXIO;
index 98be7ef3c0866ac91378304f9683eb457c3f6a98..f40957adc7c70886cb4ee598d56096d482b77c19 100644 (file)
@@ -2063,6 +2063,8 @@ static int __init sock_init(void)
 #ifdef CONFIG_NETFILTER
        netfilter_init();
 #endif
+
+       return 0;
 }
 
 core_initcall(sock_init);      /* early initcall */