diff options
author | Luis R. Rodriguez <mcgrof@suse.com> | 2014-04-18 05:22:55 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-04-21 02:18:55 +0400 |
commit | 94716d2fb181fcef10b79afa158cef3843b015c3 (patch) | |
tree | 53ce8207b59dc1ff83e3714763022dd137a99fe5 /net/ieee802154 | |
parent | 599018a71013386119c057a64183e49240c8b4e6 (diff) | |
download | linux-94716d2fb181fcef10b79afa158cef3843b015c3.tar.xz |
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 { u8 d_offset; }; -struct lowpan_frag_info *lowpan_cb(struct sk_buff *skb) +static struct lowpan_frag_info *lowpan_cb(struct sk_buff *skb) { return (struct lowpan_frag_info *)skb->cb; } |