diff options
Diffstat (limited to 'drivers/net/wireless/orinoco.c')
| -rw-r--r-- | drivers/net/wireless/orinoco.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/orinoco.c b/drivers/net/wireless/orinoco.c index 3f9d78d059b..f1415bff527 100644 --- a/drivers/net/wireless/orinoco.c +++ b/drivers/net/wireless/orinoco.c @@ -770,7 +770,7 @@ static void orinoco_rx_monitor(struct net_device *dev, u16 rxfid,  	/* Copy the 802.11 header to the skb */  	memcpy(skb_put(skb, hdrlen), &(desc->frame_ctl), hdrlen); -	skb->mac.raw = skb->data; +	skb_reset_mac_header(skb);  	/* If any, copy the data from the card to the skb */  	if (datalen > 0) {  |