qcacmn: Set size of wmi_bcn_tmpl_ml_params tlv as zero

TLV wmi_bcn_tmpl_ml_params was used to send the CSA/Quiet related
information to FW for the partner links. This TLV is deprecated now as FW
internally derives this information for the partner vdevs. Hence, set the
size of this TLV as  0.

Change-Id: Ibd783f5eed93872a6953dc2231b019f27a41109d
CRs-Fixed: 3157298
This commit is contained in:
Shashikala Prabhu
2022-03-24 15:04:26 +05:30
committed by Madan Koyyalamudi
vanhempi a3fdf41f5c
commit 09d9e4ed79
3 muutettua tiedostoa jossa 22 lisäystä ja 45 poistoa

Näytä tiedosto

@@ -59,6 +59,14 @@ uint8_t *vdev_start_add_mlo_params(uint8_t *buf_ptr,
*/
uint8_t *vdev_start_add_ml_partner_links(uint8_t *buf_ptr,
struct vdev_start_params *req);
/**
* bcn_tmpl_mlo_param_size() - Get ML param size in beacon template
* @param: Pointer to beacon template param
*
* Return: size of ML params in beacon template
*/
size_t bcn_tmpl_mlo_param_size(struct beacon_tmpl_params *param);
/**
* bcn_tmpl_add_ml_partner_links - Add MLO partner links in beacon template
* command
@@ -146,6 +154,11 @@ static uint8_t *vdev_start_add_ml_partner_links(uint8_t *buf_ptr,
return buf_ptr + WMI_TLV_HDR_SIZE;
}
static size_t bcn_tmpl_mlo_param_size(struct beacon_tmpl_params *param)
{
return WMI_TLV_HDR_SIZE;
}
static uint8_t *bcn_tmpl_add_ml_partner_links(uint8_t *buf_ptr,
struct beacon_tmpl_params *param)
{