Skip to content

Commit 2c474b8

Browse files
ipylypivgregkh
authored andcommitted
staging: wlan-ng: add missing byte order conversion
Conversion macros le16_to_cpu was removed and that caused new sparse warning sparse output: drivers/staging/wlan-ng/p80211netdev.c:241:44: warning: incorrect type in argument 2 (different base types) drivers/staging/wlan-ng/p80211netdev.c:241:44: expected unsigned short [unsigned] [usertype] fc drivers/staging/wlan-ng/p80211netdev.c:241:44: got restricted __le16 [usertype] fc Fixes: 7ad8257 ("staging:wlan-ng:Fix sparse warning") Signed-off-by: Igor Pylypiv <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent d9c3b5a commit 2c474b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/staging/wlan-ng/p80211netdev.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ static int p80211_convert_to_ether(struct wlandevice *wlandev,
237237
struct p80211_hdr_a3 *hdr;
238238

239239
hdr = (struct p80211_hdr_a3 *)skb->data;
240-
if (p80211_rx_typedrop(wlandev, hdr->fc))
240+
if (p80211_rx_typedrop(wlandev, le16_to_cpu(hdr->fc)))
241241
return CONV_TO_ETHER_SKIPPED;
242242

243243
/* perform mcast filtering: allow my local address through but reject

0 commit comments

Comments
 (0)