|
@@ -824,6 +824,9 @@ static void populate_dot11f_set_tdls_he_cap(struct mac_context *mac,
|
|
|
populate_dot11f_he_caps(mac, NULL, heCap);
|
|
|
lim_tdls_set_he_chan_width(heCap, session);
|
|
|
lim_log_he_cap(mac, heCap);
|
|
|
+ } else {
|
|
|
+ pe_debug("Not populating he cap as SelfDot11Mode not HE %d",
|
|
|
+ selfDot11Mode);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -2745,7 +2748,7 @@ static void lim_tdls_update_hash_node_info(struct mac_context *mac,
|
|
|
tDot11fIEVHTCaps *pVhtCaps = NULL;
|
|
|
tDot11fIEVHTCaps *pVhtCaps_txbf = NULL;
|
|
|
tDot11fIEVHTCaps vhtCap;
|
|
|
- uint8_t cbMode;
|
|
|
+ uint8_t cbMode, selfDot11Mode;
|
|
|
|
|
|
if (add_sta_req->tdls_oper == TDLS_OPER_ADD) {
|
|
|
populate_dot11f_ht_caps(mac, pe_session, &htCap);
|
|
@@ -2828,8 +2831,12 @@ static void lim_tdls_update_hash_node_info(struct mac_context *mac,
|
|
|
WNI_CFG_VHT_CHANNEL_WIDTH_20_40MHZ;
|
|
|
}
|
|
|
|
|
|
- lim_tdls_update_node_he_caps(mac, add_sta_req, sta, pe_session);
|
|
|
-
|
|
|
+ selfDot11Mode = mac->mlme_cfg->dot11_mode.dot11_mode;
|
|
|
+ if (IS_DOT11_MODE_HE(selfDot11Mode))
|
|
|
+ lim_tdls_update_node_he_caps(mac, add_sta_req, sta, pe_session);
|
|
|
+ else
|
|
|
+ pe_debug("Not populating he cap as SelfDot11Mode not HE %d",
|
|
|
+ selfDot11Mode);
|
|
|
/*
|
|
|
* Calculate the Secondary Coannel Offset if our
|
|
|
* own channel bonding state is enabled
|