qcacld-3.0: Fix issue with HE partial BW UL MU MIMO capability

Update the HE partial BW UL MU MIMO capability in CFG with the
FW capability shared for supported features.

Change-Id: Ia2c934ce2277076f86fc679b55d4d386ae27795c
CRs-Fixed: 2446810
This commit is contained in:
Kiran Kumar Lokere
2019-05-06 18:07:54 -07:00
committed by nshrivas
parent dd72bf7367
commit 19dbfeb163
2 changed files with 6 additions and 4 deletions

View File

@@ -569,12 +569,13 @@
* he_ul_mumimo - configure ul mu capabilities * he_ul_mumimo - configure ul mu capabilities
* @Min: 0 * @Min: 0
* @Max: 3 * @Max: 3
* @Default: 2 * @Default: 0
* *
* This ini is used to configure capabilities of ul mu-mimo * This ini is used to configure capabilities of ul mu-mimo
* 0-> no support * 0-> no support
* 1-> partial bandwidth support * 1-> full bandwidth support
* 2-> full and partial bandwidth support * 2-> partial bandwidth support
* 3-> full and partial bandwidth support
* *
* Related: NA * Related: NA
* *
@@ -588,7 +589,7 @@
"he_ul_mumimo", \ "he_ul_mumimo", \
0, \ 0, \
3, \ 3, \
2, \ 0, \
CFG_VALUE_OR_DEFAULT, \ CFG_VALUE_OR_DEFAULT, \
"He Ul Mumimo") "He Ul Mumimo")

View File

@@ -698,6 +698,7 @@ QDF_STATUS mlme_update_tgt_he_caps_in_cfg(struct wlan_objmgr_psoc *psoc,
mlme_obj->cfg.he_caps.dot11_he_cap.bfee_sts_lt_80 = 0; mlme_obj->cfg.he_caps.dot11_he_cap.bfee_sts_lt_80 = 0;
mlme_obj->cfg.he_caps.dot11_he_cap.bfee_sts_gt_80 = 0; mlme_obj->cfg.he_caps.dot11_he_cap.bfee_sts_gt_80 = 0;
} }
mlme_obj->cfg.he_caps.dot11_he_cap.ul_mu = he_cap->ul_mu;
mlme_obj->cfg.he_caps.dot11_he_cap.su_feedback_tone16 = mlme_obj->cfg.he_caps.dot11_he_cap.su_feedback_tone16 =
he_cap->su_feedback_tone16; he_cap->su_feedback_tone16;
mlme_obj->cfg.he_caps.dot11_he_cap.mu_feedback_tone16 = mlme_obj->cfg.he_caps.dot11_he_cap.mu_feedback_tone16 =