diff options
author | Denis V. Lunev <den@openvz.org> | 2008-02-29 14:13:15 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-02-29 14:13:15 -0500 |
commit | 9b0f976f27f00a81cf47643d90854659626795b4 (patch) | |
tree | 3226ff8a03faf6c8137eeb1313248dfd2a395f21 /net/ipv4/af_inet.c | |
parent | 4c563f7669c10a12354b72b518c2287ffc6ebfb3 (diff) |
[INET]: Remove struct net_proto_family* from _init calls.
struct net_proto_family* is not used in icmp[v6]_init, ndisc_init,
igmp_init and tcp_v4_init. Remove it.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Acked-by: Daniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/af_inet.c')
-rw-r--r-- | net/ipv4/af_inet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/af_inet.c b/net/ipv4/af_inet.c index c270080f370e..a7a99ac856dc 100644 --- a/net/ipv4/af_inet.c +++ b/net/ipv4/af_inet.c | |||
@@ -1415,7 +1415,7 @@ static int __init inet_init(void) | |||
1415 | 1415 | ||
1416 | ip_init(); | 1416 | ip_init(); |
1417 | 1417 | ||
1418 | tcp_v4_init(&inet_family_ops); | 1418 | tcp_v4_init(); |
1419 | 1419 | ||
1420 | /* Setup TCP slab cache for open requests. */ | 1420 | /* Setup TCP slab cache for open requests. */ |
1421 | tcp_init(); | 1421 | tcp_init(); |
@@ -1430,7 +1430,7 @@ static int __init inet_init(void) | |||
1430 | * Set the ICMP layer up | 1430 | * Set the ICMP layer up |
1431 | */ | 1431 | */ |
1432 | 1432 | ||
1433 | icmp_init(&inet_family_ops); | 1433 | icmp_init(); |
1434 | 1434 | ||
1435 | /* | 1435 | /* |
1436 | * Initialise the multicast router | 1436 | * Initialise the multicast router |