qcacmn: Add WMI MLO params for CSA beacon template

A new TLV is added to send partner link CSA/ECSA count offset to FW as
part of beacon template. Add WMI changes to populate these TLVs in the
beacon template send function.

To fix the compilation issue, added forward declaration of 'struct
vdev_mlme_obj' and removed 'include/wlan_vdev_mlme.h' include file from
wlan_mlo_mgr_public_structs.h.

Change-Id: I6e421b29bb887bec711a23db1458aca4d112ade4
CRs-Fixed: 2983249
This commit is contained in:
Shashikala Prabhu
2021-07-08 16:43:06 +05:30
committed by Madan Koyyalamudi
parent 9304c2d00e
commit 3925ddf85b
6 changed files with 100 additions and 5 deletions

View File

@@ -1057,7 +1057,6 @@ struct ml_partner_info {
uint32_t hw_mld_link_id;
};
#define WMI_MAX_ML_PARTNER_LINKS 4
/**
* struct peer_assoc_ml_partner_links - ML partner links
* @num_links: Number of links
@@ -1065,7 +1064,7 @@ struct ml_partner_info {
*/
struct peer_assoc_ml_partner_links {
uint8_t num_links;
struct ml_partner_info partner_info[WMI_MAX_ML_PARTNER_LINKS];
struct ml_partner_info partner_info[WLAN_UMAC_MLO_MAX_VDEVS];
};
#endif
/**