From: Jason Wang <jasowang@redhat.com>
Date: Tue, 18 Dec 2012 03:00:27 +0000 (+0800)
Subject: tuntap: fix sparse warning
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d32649d1712b2e66d4ffebe0076561e15b598caf;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git

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>
---

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)
 	++tun->numdisabled;
 }
 
-struct tun_struct *tun_enable_queue(struct tun_file *tfile)
+static struct tun_struct *tun_enable_queue(struct tun_file *tfile)
 {
 	struct tun_struct *tun = tfile->detached;