summaryrefslogtreecommitdiff
path: root/net/9p
diff options
context:
space:
mode:
authorRashika Kheria <rashika.kheria@gmail.com>2014-02-09 14:27:33 (GMT)
committerDavid S. Miller <davem@davemloft.net>2014-02-10 01:32:49 (GMT)
commitfd944bded5ce32247941ce54eb8f65646549886b (patch)
tree852c7f1749568a6bcc2619e340d891e56428eeaa /net/9p
parent872c7e6fd214739328eafa5134d46a534c8ca60b (diff)
downloadlinux-fd944bded5ce32247941ce54eb8f65646549886b.tar.xz
net: Mark function as static in 9p/client.c
Mark function as static in net/9p/client.c because it is not used outside this file. This eliminates the following warning in net/9p/client.c: net/9p/client.c:207:18: warning: no previous prototype for ‘p9_fcall_alloc’ [-Wmissing-prototypes] Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/9p')
-rw-r--r--net/9p/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/9p/client.c b/net/9p/client.c
index a5e4d2d..9186550 100644
--- a/net/9p/client.c
+++ b/net/9p/client.c
@@ -204,7 +204,7 @@ free_and_return:
return ret;
}
-struct p9_fcall *p9_fcall_alloc(int alloc_msize)
+static struct p9_fcall *p9_fcall_alloc(int alloc_msize)
{
struct p9_fcall *fc;
fc = kmalloc(sizeof(struct p9_fcall) + alloc_msize, GFP_NOFS);