]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - net/llc/llc_sap.c
V4L/DVB (7285): em28xx: Correct use of ! and &
[linux-2.6-omap-h63xx.git] / net / llc / llc_sap.c
index 2615dc81aa36f018e6120cbaada3b685accc4db2..2525165e2e8fdb8a53e774f82f72f8acba4eb94e 100644 (file)
@@ -36,11 +36,12 @@ struct sk_buff *llc_alloc_frame(struct sock *sk, struct net_device *dev)
        struct sk_buff *skb = alloc_skb(128, GFP_ATOMIC);
 
        if (skb) {
+               skb_reset_mac_header(skb);
                skb_reserve(skb, 50);
-               skb->nh.raw   = skb->h.raw = skb->data;
+               skb_reset_network_header(skb);
+               skb_reset_transport_header(skb);
                skb->protocol = htons(ETH_P_802_2);
                skb->dev      = dev;
-               skb->mac.raw  = skb->head;
                if (sk != NULL)
                        skb_set_owner_w(skb, sk);
        }