mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 09:43:59 +08:00
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:
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]);
|
||||
|
Loading…
Reference in New Issue
Block a user