瀏覽代碼

qcacld-3.0: Remove TDLS wider bandwidth support from VHT IE

TDLS wider band width is not yet supported, but it is
incorrectly advertised in TDLS action frames.
Remove the wider bandwidth advertisement from VHT IE
in TDLS action frames.

Change-Id: I66f0e5d147af93100a7780b14636ba6438330584
CRs-Fixed: 1028205
Kabilan Kannan 8 年之前
父節點
當前提交
91765b4a34
共有 1 個文件被更改,包括 11 次插入0 次删除
  1. 11 0
      core/mac/src/pe/lim/lim_process_tdls.c

+ 11 - 0
core/mac/src/pe/lim/lim_process_tdls.c

@@ -587,6 +587,17 @@ static void populate_dot11f_tdls_ht_vht_cap(tpAniSirGlobal pMac,
 		    IS_FEATURE_SUPPORTED_BY_FW(DOT11AC)) {
 			/* Include VHT Capability IE */
 			populate_dot11f_vht_caps(pMac, psessionEntry, vhtCap);
+
+			/*
+			 * Set to 0 if the TDLS STA does not support either 160
+			 * or 80+80 MHz.
+			 * Set to 1 if the TDLS STA supports 160 MHz.
+			 * Set to 2 if the TDLS STA supports 160 MHz and
+			 * 80+80 MHz.
+			 * The value 3 is reserved
+			 */
+			vhtCap->supportedChannelWidthSet = 0;
+
 			vhtCap->suBeamformeeCap = 0;
 			vhtCap->suBeamFormerCap = 0;
 			vhtCap->muBeamformeeCap = 0;