mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
mwifiex: correct bss_mode check while appending vht operation IE
priv->bss_mode uses NL80211_IFTYPE_* definitions. HostCmd_BSS_MODE_IBSS is used in ad-hoc start/join command between driver and firmware. Coincidentally both HostCmd_BSS_MODE_IBSS and NL80211_IFTYPE_STATION are defined as 2. That explains why nobody complained. Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
d033d3a6b1
commit
0648f3a4b0
@ -200,7 +200,7 @@ int mwifiex_cmd_append_11ac_tlv(struct mwifiex_private *priv,
|
||||
|
||||
/* VHT Operation IE */
|
||||
if (bss_desc->bcn_vht_oper) {
|
||||
if (priv->bss_mode == HostCmd_BSS_MODE_IBSS) {
|
||||
if (priv->bss_mode == NL80211_IFTYPE_STATION) {
|
||||
vht_op = (struct mwifiex_ie_types_vht_oper *)*buffer;
|
||||
memset(vht_op, 0, sizeof(*vht_op));
|
||||
vht_op->header.type =
|
||||
|
Loading…
Reference in New Issue
Block a user