[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1384570328-21666-1-git-send-email-festevam@gmail.com>
Date: Sat, 16 Nov 2013 00:52:07 -0200
From: Fabio Estevam <festevam@...il.com>
To: davem@...emloft.net
Cc: netdev@...r.kernel.org, Fabio Estevam <fabio.estevam@...escale.com>
Subject: [PATCH 1/2] net: ipv6: af_inet6: Fix warning when CONFIG_SYSCTL=n
From: Fabio Estevam <fabio.estevam@...escale.com>
When CONFIG_SYSCTL=n the following build warning happens:
net/ipv6/af_inet6.c:710:13: warning: 'ipv6_packet_cleanup' defined but not used [-Wunused-function]
ipv6_packet_cleanup() is only used when CONFIG_SYSCTL=y, so protect its
definition with an'ifdef CONFIG_SYSCTL'.
Signed-off-by: Fabio Estevam <fabio.estevam@...escale.com>
---
net/ipv6/af_inet6.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c
index ff75313..e4ad65c 100644
--- a/net/ipv6/af_inet6.c
+++ b/net/ipv6/af_inet6.c
@@ -707,10 +707,12 @@ static int __init ipv6_packet_init(void)
return 0;
}
+#ifdef CONFIG_SYSCTL
static void ipv6_packet_cleanup(void)
{
dev_remove_pack(&ipv6_packet_type);
}
+#endif
static int __net_init ipv6_init_mibs(struct net *net)
{
--
1.8.1.2
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists