diff options
Diffstat (limited to 'net/ieee802154')
-rw-r--r-- | net/ieee802154/6lowpan.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/net/ieee802154/6lowpan.h b/net/ieee802154/6lowpan.h index 10909e58bb69..4981bf859e5b 100644 --- a/net/ieee802154/6lowpan.h +++ b/net/ieee802154/6lowpan.h | |||
@@ -298,6 +298,13 @@ static inline bool lowpan_fetch_skb(struct sk_buff *skb, | |||
298 | return false; | 298 | return false; |
299 | } | 299 | } |
300 | 300 | ||
301 | static inline void lowpan_push_hc_data(u8 **hc_ptr, const void *data, | ||
302 | const size_t len) | ||
303 | { | ||
304 | memcpy(*hc_ptr, data, len); | ||
305 | *hc_ptr += len; | ||
306 | } | ||
307 | |||
301 | typedef int (*skb_delivery_cb)(struct sk_buff *skb, struct net_device *dev); | 308 | typedef int (*skb_delivery_cb)(struct sk_buff *skb, struct net_device *dev); |
302 | 309 | ||
303 | int lowpan_process_data(struct sk_buff *skb, struct net_device *dev, | 310 | int lowpan_process_data(struct sk_buff *skb, struct net_device *dev, |