diff options
author | Brian Haley <brian.haley@hp.com> | 2008-06-14 20:04:49 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-06-14 20:04:49 -0400 |
commit | 7d06b2e053d2d536348e3a0f6bb02982a41bea37 (patch) | |
tree | ec6a5c3f448e84cd431a0397b9e2a87ca25aec17 /net/ipv4/tcp_ipv4.c | |
parent | 4ae127d1b6c71f9240dd4245f240e6dd8fc98014 (diff) |
net: change proto destroy method to return void
Change struct proto destroy function pointer to return void. Noticed
by Al Viro.
Signed-off-by: Brian Haley <brian.haley@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index b219a7a7cd08..64b385f65930 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c | |||
@@ -1775,7 +1775,7 @@ static int tcp_v4_init_sock(struct sock *sk) | |||
1775 | return 0; | 1775 | return 0; |
1776 | } | 1776 | } |
1777 | 1777 | ||
1778 | int tcp_v4_destroy_sock(struct sock *sk) | 1778 | void tcp_v4_destroy_sock(struct sock *sk) |
1779 | { | 1779 | { |
1780 | struct tcp_sock *tp = tcp_sk(sk); | 1780 | struct tcp_sock *tp = tcp_sk(sk); |
1781 | 1781 | ||
@@ -1819,8 +1819,6 @@ int tcp_v4_destroy_sock(struct sock *sk) | |||
1819 | } | 1819 | } |
1820 | 1820 | ||
1821 | atomic_dec(&tcp_sockets_allocated); | 1821 | atomic_dec(&tcp_sockets_allocated); |
1822 | |||
1823 | return 0; | ||
1824 | } | 1822 | } |
1825 | 1823 | ||
1826 | EXPORT_SYMBOL(tcp_v4_destroy_sock); | 1824 | EXPORT_SYMBOL(tcp_v4_destroy_sock); |