aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Wang <jasowang@redhat.com>2012-12-17 22:00:27 -0500
committerDavid S. Miller <davem@davemloft.net>2012-12-17 23:49:06 -0500
commitd32649d1712b2e66d4ffebe0076561e15b598caf (patch)
tree73926d278887865b950270bfdcce3331cce14b24
parent76fe45812a3b134c39170ca32dfd4b7217d33145 (diff)
tuntap: fix sparse warning
Make tun_enable_queue() static to fix the sparse warning: drivers/net/tun.c:399:19: sparse: symbol 'tun_enable_queue' was not declared. Should it be static? Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Jason Wang <jasowang@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/tun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index 173acf5b369a..504f7f1cad94 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -396,7 +396,7 @@ static void tun_disable_queue(struct tun_struct *tun, struct tun_file *tfile)
396 ++tun->numdisabled; 396 ++tun->numdisabled;
397} 397}
398 398
399struct tun_struct *tun_enable_queue(struct tun_file *tfile) 399static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
400{ 400{
401 struct tun_struct *tun = tfile->detached; 401 struct tun_struct *tun = tfile->detached;
402 402