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
2016-06-14 00:00:23 -07:00
提交者 Gerrit - the friendly Code Review server
父節點 7ae4d60284
當前提交 91765b4a34

查看文件

@@ -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;