Staging: brcmfmac: Fix MAC header lookup on 64-bit architectures
Fix direct use of sk_buff::mac_header which is an offset rather than a pointer on 64-bit architectures. Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Cc: Brett Rudley <brudley@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
69ec303a99
commit
d4fcdc6856
@@ -1189,7 +1189,7 @@ void dhd_rx_frame(dhd_pub_t *dhdp, int ifidx, void *pktbuf, int numpkt)
|
||||
/* Process special event packets and then discard them */
|
||||
if (ntoh16(skb->protocol) == ETHER_TYPE_BRCM)
|
||||
dhd_wl_host_event(dhd, &ifidx,
|
||||
skb->mac_header,
|
||||
skb_mac_header(skb),
|
||||
&event, &data);
|
||||
|
||||
ASSERT(ifidx < DHD_MAX_IFS && dhd->iflist[ifidx]);
|
||||
|
Reference in New Issue
Block a user