mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-25 05:53:41 +00:00
rtl8188eu: Fix length of rtw_ieee80211_ht_cap
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
7b91d5660e
commit
ff0540d9ca
1 changed files with 4 additions and 1 deletions
|
@ -632,7 +632,10 @@ struct rtw_ieee80211_bar {
|
||||||
struct rtw_ieee80211_ht_cap {
|
struct rtw_ieee80211_ht_cap {
|
||||||
__le16 cap_info;
|
__le16 cap_info;
|
||||||
u8 ampdu_params_info;
|
u8 ampdu_params_info;
|
||||||
u8 supp_mcs_set[16];
|
union {
|
||||||
|
struct ieee80211_mcs_info mcs;
|
||||||
|
u8 supp_mcs_set[16];
|
||||||
|
};
|
||||||
__le16 extended_ht_cap_info;
|
__le16 extended_ht_cap_info;
|
||||||
__le32 tx_BF_cap_info;
|
__le32 tx_BF_cap_info;
|
||||||
u8 antenna_selection_info;
|
u8 antenna_selection_info;
|
||||||
|
|
Loading…
Reference in a new issue