diff options
author | Pavel Emelyanov <xemul@openvz.org> | 2007-10-18 00:23:43 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-10-18 00:23:43 -0400 |
commit | 16910b9829797cda4032fbc84e5292ac7b4474f7 (patch) | |
tree | ffd780277883169546b1b147614aeba45e3a2e12 | |
parent | 47e958eac280c263397582d5581e868c3227a1bd (diff) |
[IPV6]: Fix return type for snmp6_free_dev()
This call is essentially void.
Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv6/addrconf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 52d10d213217..edf06ca34749 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c | |||
@@ -283,12 +283,11 @@ err_ip: | |||
283 | return err; | 283 | return err; |
284 | } | 284 | } |
285 | 285 | ||
286 | static int snmp6_free_dev(struct inet6_dev *idev) | 286 | static void snmp6_free_dev(struct inet6_dev *idev) |
287 | { | 287 | { |
288 | snmp_mib_free((void **)idev->stats.icmpv6msg); | 288 | snmp_mib_free((void **)idev->stats.icmpv6msg); |
289 | snmp_mib_free((void **)idev->stats.icmpv6); | 289 | snmp_mib_free((void **)idev->stats.icmpv6); |
290 | snmp_mib_free((void **)idev->stats.ipv6); | 290 | snmp_mib_free((void **)idev->stats.ipv6); |
291 | return 0; | ||
292 | } | 291 | } |
293 | 292 | ||
294 | /* Nobody refers to this device, we may destroy it. */ | 293 | /* Nobody refers to this device, we may destroy it. */ |