Commit 65bbdabe authored by Aakash Hemadri's avatar Aakash Hemadri Committed by Greg Kroah-Hartman

staging: wlan-ng: fix invalid assignment warning

p80211_hdr->frame_control is u16, change to __le16
to satisfy sparse warning:

wlan-ng/prism2sta.c:253:43: warning: invalid assignment: |=
wlan-ng/prism2sta.c:253:43:    left side has type unsigned short
wlan-ng/prism2sta.c:253:43:    right side has type restricted __le16

Fixes: 6277fbfd ("staging: wlan-ng: Remove pointless a3/a4 union")
Reviewed-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarAakash Hemadri <aakashhemadri123@gmail.com>
Link: https://lore.kernel.org/r/20210828042949.2276341-1-aakashhemadri123@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f6bc526a
......@@ -149,7 +149,7 @@
/* Generic 802.11 Header types */
struct p80211_hdr {
u16 frame_control;
__le16 frame_control;
u16 duration_id;
u8 address1[ETH_ALEN];
u8 address2[ETH_ALEN];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment