aboutsummaryrefslogtreecommitdiffstats
path: root/net/caif
diff options
context:
space:
mode:
authorSilviu-Mihai Popescu <silviupopescu1990@gmail.com>2013-03-02 09:45:19 +0000
committerDavid S. Miller <davem@davemloft.net>2013-03-03 01:43:48 -0500
commitd6e89c0b7660bd725a0948126f9db1a327f48d76 (patch)
treea7670aeb7cd3e2918115fdd5bf19f9a11f858c0c /net/caif
parentax88179_178a: ASIX AX88179_178A USB 3.0/2.0 to gigabit ethernet adapter driver (diff)
downloadlinux-dev-d6e89c0b7660bd725a0948126f9db1a327f48d76.tar.xz
linux-dev-d6e89c0b7660bd725a0948126f9db1a327f48d76.zip
caif_dev: fix sparse warnings for caif_flow_cb
This fixed the following sparse warning: net/caif/caif_dev.c:121:6: warning: symbol 'caif_flow_cb' was not declared. Should it be static? Signed-off-by: Silviu-Mihai Popescu <silviupopescu1990@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/caif')
-rw-r--r--net/caif/caif_dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/caif/caif_dev.c b/net/caif/caif_dev.c
index 1ae1d9cb278d..21760f008974 100644
--- a/net/caif/caif_dev.c
+++ b/net/caif/caif_dev.c
@@ -118,7 +118,7 @@ static struct caif_device_entry *caif_get(struct net_device *dev)
return NULL;
}
-void caif_flow_cb(struct sk_buff *skb)
+static void caif_flow_cb(struct sk_buff *skb)
{
struct caif_device_entry *caifd;
void (*dtor)(struct sk_buff *skb) = NULL;