diff options
author | Luis R. Rodriguez <mcgrof@suse.com> | 2014-04-17 21:22:55 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-04-20 18:18:55 -0400 |
commit | 94716d2fb181fcef10b79afa158cef3843b015c3 (patch) | |
tree | 53ce8207b59dc1ff83e3714763022dd137a99fe5 /net/ieee802154 | |
parent | 599018a71013386119c057a64183e49240c8b4e6 (diff) |
6lowpan: make lowpan_cb static
CC: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
Cc: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Cc: linux-zigbee-devel@lists.sourceforge.net
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ieee802154')
-rw-r--r-- | net/ieee802154/reassembly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ieee802154/reassembly.c b/net/ieee802154/reassembly.c index 132b65b6d957..6f1428c4870b 100644 --- a/net/ieee802154/reassembly.c +++ b/net/ieee802154/reassembly.c | |||
@@ -36,7 +36,7 @@ struct lowpan_frag_info { | |||
36 | u8 d_offset; | 36 | u8 d_offset; |
37 | }; | 37 | }; |
38 | 38 | ||
39 | struct lowpan_frag_info *lowpan_cb(struct sk_buff *skb) | 39 | static struct lowpan_frag_info *lowpan_cb(struct sk_buff *skb) |
40 | { | 40 | { |
41 | return (struct lowpan_frag_info *)skb->cb; | 41 | return (struct lowpan_frag_info *)skb->cb; |
42 | } | 42 | } |