diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2014-01-09 22:22:05 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-01-13 11:36:43 -0800 |
commit | d10dbad2aafacc7e1391595596e7c5138892dd93 (patch) | |
tree | b894f2e8a65a18272082bbae3b5cdca555ca6e8b /net/ipv4 | |
parent | c139cd3b43eac8708849755ed14286d0e9d2e589 (diff) | |
download | linux-d10dbad2aafacc7e1391595596e7c5138892dd93.tar.bz2 |
gre_offload: fix sparse non static symbol warning
Fixes the following sparse warning:
net/ipv4/gre_offload.c:253:5: warning:
symbol 'gre_gro_complete' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/gre_offload.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/gre_offload.c b/net/ipv4/gre_offload.c index 746a7b10d434..31da9f512583 100644 --- a/net/ipv4/gre_offload.c +++ b/net/ipv4/gre_offload.c @@ -250,7 +250,7 @@ out: return pp; } -int gre_gro_complete(struct sk_buff *skb, int nhoff) +static int gre_gro_complete(struct sk_buff *skb, int nhoff) { struct gre_base_hdr *greh = (struct gre_base_hdr *)(skb->data + nhoff); struct packet_offload *ptype; |