qcacld-3.0: Add support for VHT MCS 10&11

Add support to advertise the VHT MCS 10&11 support using vendor
specific IE to enable the MCS 10 and 11 support in VHT mode.

Change-Id: I2d197dcce20ab4aec617ca8a7f4a54b438fae635
CRs-Fixed: 2465662
This commit is contained in:
Kiran Kumar Lokere
2019-08-06 18:22:39 -07:00
committed by nshrivas
parent e51d668c82
commit 89f01f0fac
21 changed files with 776 additions and 419 deletions

View File

@@ -3121,6 +3121,9 @@ mlme_update_vht_cap(struct wlan_objmgr_psoc *psoc, struct wma_tgt_vht_cap *cfg)
if (vht_cap_info->short_gi_160mhz && !cfg->vht_short_gi_160)
vht_cap_info->short_gi_160mhz = cfg->vht_short_gi_160;
vht_cap_info->vht_mcs_10_11_supp = cfg->vht_mcs_10_11_supp;
mlme_legacy_debug(" vht_mcs_10_11_supp %d", cfg->vht_mcs_10_11_supp);
return QDF_STATUS_SUCCESS;
}