]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
6lowpan: remove unused function
authorVarka Bhadram <varkab@cdac.in>
Wed, 30 Jul 2014 05:35:12 +0000 (11:05 +0530)
committerMarcel Holtmann <marcel@holtmann.org>
Wed, 30 Jul 2014 17:28:41 +0000 (19:28 +0200)
This patch removes the unused function.

Signed-off-by: Varka Bhadram <varkab@cdac.in>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
include/net/6lowpan.h

index 614920a39bf22b8f02fcc12a918ce2fdf551c423..d184df1d0d412360a6de44024b9559afc9d13a07 100644 (file)
@@ -240,17 +240,6 @@ static inline int lowpan_fetch_skb_u8(struct sk_buff *skb, u8 *val)
        return 0;
 }
 
-static inline int lowpan_fetch_skb_u16(struct sk_buff *skb, u16 *val)
-{
-       if (unlikely(!pskb_may_pull(skb, 2)))
-               return -EINVAL;
-
-       *val = (skb->data[0] << 8) | skb->data[1];
-       skb_pull(skb, 2);
-
-       return 0;
-}
-
 static inline bool lowpan_fetch_skb(struct sk_buff *skb,
                void *data, const unsigned int len)
 {