qcacmn: handle MLO scenario for candidate validating

Add flag to indicate whether MLO is supported by the candidate or not,
which is helpful when checking concurrency.

Change-Id: I166ad2963163ae4dc7989516b654dce4cb635cec
CRs-Fixed: 3013418
This commit is contained in:
Yu Wang
2021-08-08 16:52:18 +08:00
committed by Madan Koyyalamudi
vanhempi 045a3225cd
commit 33958ed42f
2 muutettua tiedostoa jossa 25 lisäystä ja 0 poistoa

Näytä tiedosto

@@ -74,11 +74,15 @@ enum wlan_if_mgr_evt {
* @peer_addr: MAC address of the BSS
* @chan_freq: Frequency of the potential BSS connection
* @beacon_interval: beacon interval of BSS
* @is_mlo: indicate whether MLO is supported by the BSS or not
*/
struct validate_bss_data {
struct qdf_mac_addr peer_addr;
qdf_freq_t chan_freq;
uint16_t beacon_interval;
#ifdef WLAN_FEATURE_11BE_MLO
bool is_mlo;
#endif
};
/**