Commit 4ae888b6 authored by Krzysztof Konopko's avatar Krzysztof Konopko Committed by Greg Kroah-Hartman

staging: rtl8723au: Fix sparse warnings

Some struct fields in wifi.h are meant to be __le16 but were declared as
unsigned short.  This was reported by sparse:

  rtw_wlan_util.c:538:24: warning: cast to restricted __le16
  rtw_wlan_util.c:1544:29: warning: cast to restricted __le16
  rtw_wlan_util.c:1546:25: warning: cast to restricted __le16

This patch updates the types of the fields in `AC_param` and
`ADDBA_request` structs to be consistent with relevant structs in
include/linux/ieee80211.h.
Signed-off-by: default avatarKrzysztof Konopko <kris@konagma.com>
Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3895ed0b
...@@ -26,9 +26,9 @@ ...@@ -26,9 +26,9 @@
------------------------------------------------------------------------------*/ ------------------------------------------------------------------------------*/
struct AC_param { struct AC_param {
unsigned char ACI_AIFSN; u8 ACI_AIFSN;
unsigned char CW; u8 CW;
unsigned short TXOP_limit; __le16 TXOP_limit;
} __packed; } __packed;
struct WMM_para_element { struct WMM_para_element {
...@@ -38,10 +38,10 @@ struct WMM_para_element { ...@@ -38,10 +38,10 @@ struct WMM_para_element {
} __packed; } __packed;
struct ADDBA_request { struct ADDBA_request {
unsigned char dialog_token; u8 dialog_token;
unsigned short BA_para_set; __le16 BA_para_set;
unsigned short BA_timeout_value; __le16 BA_timeout_value;
unsigned short BA_starting_seqctrl; __le16 BA_starting_seqctrl;
} __packed; } __packed;
......
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