From: Pavel Emelyanov Date: Thu, 18 Oct 2007 04:23:43 +0000 (-0700) Subject: [IPV6]: Fix return type for snmp6_free_dev() X-Git-Tag: v2.6.24-rc1~294^2~22 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=16910b9829797cda4032fbc84e5292ac7b4474f7;p=linux.git [IPV6]: Fix return type for snmp6_free_dev() This call is essentially void. Signed-off-by: Pavel Emelyanov Signed-off-by: David S. Miller --- 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 @@ static int snmp6_alloc_dev(struct inet6_dev *idev) return err; } -static int snmp6_free_dev(struct inet6_dev *idev) +static void snmp6_free_dev(struct inet6_dev *idev) { snmp_mib_free((void **)idev->stats.icmpv6msg); snmp_mib_free((void **)idev->stats.icmpv6); snmp_mib_free((void **)idev->stats.ipv6); - return 0; } /* Nobody refers to this device, we may destroy it. */