diff options
Diffstat (limited to 'drivers/net/wan/dlci.c')
| -rw-r--r-- | drivers/net/wan/dlci.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wan/dlci.c b/drivers/net/wan/dlci.c index 73698755943..66be20c292b 100644 --- a/drivers/net/wan/dlci.c +++ b/drivers/net/wan/dlci.c @@ -176,7 +176,7 @@ static void dlci_receive(struct sk_buff *skb, struct net_device *dev)  	if (process)  	{  		/* we've set up the protocol, so discard the header */ -		skb->mac.raw = skb->data;  +		skb_reset_mac_header(skb);  		skb_pull(skb, header);  		dlp->stats.rx_bytes += skb->len;  		netif_rx(skb);  |