aboutsummaryrefslogtreecommitdiffstats
path: root/net/ieee802154
diff options
context:
space:
mode:
authorChristian Engelmayer <cengelma@gmx.at>2014-02-07 22:58:38 +0100
committerDavid S. Miller <davem@davemloft.net>2014-02-09 18:38:10 -0800
commit310f6fd0ca9de8c1fc6399af494855e15157aa35 (patch)
tree9407b050c1759287075beccef3081d49bfc0748b /net/ieee802154
parentipv6: icmp6_send: fix Oops when pinging a not set up IPv6 peer on a sit tunnel (diff)
downloadlinux-dev-310f6fd0ca9de8c1fc6399af494855e15157aa35.tar.xz
linux-dev-310f6fd0ca9de8c1fc6399af494855e15157aa35.zip
6lowpan: Remove unused pointer in lowpan_header_create()
Commit 8df8c56a (6lowpan: Moving generic compression code into 6lowpan_iphc.c) left pointer 'hdr' unused - remove it. Detected by Coverity: CID 1164868. Signed-off-by: Christian Engelmayer <cengelma@gmx.at> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ieee802154')
-rw-r--r--net/ieee802154/6lowpan.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/ieee802154/6lowpan.c b/net/ieee802154/6lowpan.c
index 48b25c0af4d0..8bfb40153fe7 100644
--- a/net/ieee802154/6lowpan.c
+++ b/net/ieee802154/6lowpan.c
@@ -106,7 +106,6 @@ static int lowpan_header_create(struct sk_buff *skb,
unsigned short type, const void *_daddr,
const void *_saddr, unsigned int len)
{
- struct ipv6hdr *hdr;
const u8 *saddr = _saddr;
const u8 *daddr = _daddr;
struct ieee802154_addr sa, da;
@@ -117,8 +116,6 @@ static int lowpan_header_create(struct sk_buff *skb,
if (type != ETH_P_IPV6)
return 0;
- hdr = ipv6_hdr(skb);
-
if (!saddr)
saddr = dev->dev_addr;