From: Eric Dumazet Date: Mon, 29 Mar 2010 06:07:20 +0000 (-0700) Subject: net: __netif_receive_skb should be static X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=10f744d205dde72a0016dbdb11e239da8269958b;p=linux-beck.git net: __netif_receive_skb should be static Signed-off-by: Eric Dumazet Signed-off-by: David S. Miller --- diff --git a/net/core/dev.c b/net/core/dev.c index bcb3ed26af1c..887aa84fcd46 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -2621,7 +2621,7 @@ void netif_nit_deliver(struct sk_buff *skb) rcu_read_unlock(); } -int __netif_receive_skb(struct sk_buff *skb) +static int __netif_receive_skb(struct sk_buff *skb) { struct packet_type *ptype, *pt_prev; struct net_device *orig_dev;