From: Rashika Date: Sun, 9 Feb 2014 14:27:33 +0000 (+0530) Subject: net: Mark function as static in 9p/client.c X-Git-Tag: v3.15-rc1~24^2~7 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=05a782d416944593ca0268d5718fe4b9cba5ef67;p=karo-tx-linux.git 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 Reviewed-by: Josh Triplett Signed-off-by: Eric Van Hensbergen --- diff --git a/net/9p/client.c b/net/9p/client.c index 95b1836173e1..ce26da95f63f 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);