We receive all 802.15.4 frames on the packet handler "lowpan_rcv" this
patch checks if the wpan device belongs to a lowpan interface.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
        struct ieee802154_hdr hdr;
        int ret;
 
+       if (dev->type != ARPHRD_IEEE802154 ||
+           !dev->ieee802154_ptr->lowpan_dev)
+               goto drop;
+
        skb = skb_share_check(skb, GFP_ATOMIC);
        if (!skb)
                goto drop;
        if (skb->pkt_type == PACKET_OTHERHOST)
                goto drop_skb;
 
-       if (dev->type != ARPHRD_IEEE802154)
-               goto drop_skb;
-
        if (ieee802154_hdr_peek_addrs(skb, &hdr) < 0)
                goto drop_skb;