qcacld-3.0: Add API to get max mcs index
Add a new field max_mcs_index in mlme_legacy_priv to save max mcs index of current vdev. Add a new field max_real_mcs_idx in hdd_station_info to save max mcs index of the connected station. Change-Id: I28908515cbe5c18c79f14f8645defd5c82e3a6f0 CRs-Fixed: 3065838
This commit is contained in:

committed by
Madan Koyyalamudi

orang tua
b5ba99c5aa
melakukan
6df47a0d95
@@ -275,6 +275,7 @@ typedef struct sap_StationAssocReassocCompleteEvent_s {
|
||||
uint8_t max_supp_idx;
|
||||
uint8_t max_ext_idx;
|
||||
uint8_t max_mcs_idx;
|
||||
uint8_t max_real_mcs_idx;
|
||||
uint8_t rx_mcs_map;
|
||||
uint8_t tx_mcs_map;
|
||||
uint8_t ecsa_capable;
|
||||
|
@@ -2287,6 +2287,8 @@ QDF_STATUS sap_signal_hdd_event(struct sap_context *sap_ctx,
|
||||
reassoc_complete->max_supp_idx = csr_roaminfo->max_supp_idx;
|
||||
reassoc_complete->max_ext_idx = csr_roaminfo->max_ext_idx;
|
||||
reassoc_complete->max_mcs_idx = csr_roaminfo->max_mcs_idx;
|
||||
reassoc_complete->max_real_mcs_idx =
|
||||
csr_roaminfo->max_real_mcs_idx;
|
||||
reassoc_complete->rx_mcs_map = csr_roaminfo->rx_mcs_map;
|
||||
reassoc_complete->tx_mcs_map = csr_roaminfo->tx_mcs_map;
|
||||
reassoc_complete->ecsa_capable = csr_roaminfo->ecsa_capable;
|
||||
|
Reference in New Issue
Block a user