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/raw.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/raw.c')
-rw-r--r-- | net/ipv4/raw.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c index 1d0c97c8712d..36035a0c6dc2 100644 --- a/net/ipv4/raw.c +++ b/net/ipv4/raw.c | |||
@@ -606,12 +606,11 @@ static void raw_close(struct sock *sk, long timeout) | |||
606 | sk_common_release(sk); | 606 | sk_common_release(sk); |
607 | } | 607 | } |
608 | 608 | ||
609 | static int raw_destroy(struct sock *sk) | 609 | static void raw_destroy(struct sock *sk) |
610 | { | 610 | { |
611 | lock_sock(sk); | 611 | lock_sock(sk); |
612 | ip_flush_pending_frames(sk); | 612 | ip_flush_pending_frames(sk); |
613 | release_sock(sk); | 613 | release_sock(sk); |
614 | return 0; | ||
615 | } | 614 | } |
616 | 615 | ||
617 | /* This gets rid of all the nasties in af_inet. -DaveM */ | 616 | /* This gets rid of all the nasties in af_inet. -DaveM */ |