mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 06:01:23 +00:00
[NET]: Fix sock_init() return value.
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>
This commit is contained in:
parent
f34fbb9713
commit
cbeb321a64
2 changed files with 2 additions and 5 deletions
|
@ -2063,6 +2063,8 @@ static int __init sock_init(void)
|
|||
#ifdef CONFIG_NETFILTER
|
||||
netfilter_init();
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
core_initcall(sock_init); /* early initcall */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue