qcacmn: Add support to extract wmi_mlo_link_removal_evt_fixed_param TLV

WMI_MLO_LINK_REMOVAL_EVENTID will be sent by FW to update the Host with the
progress of the link delete operation. Add support to extract the fixed
params TLV sent in this event.

Change-Id: Ic42a822339363b1347ae174926a4dac19eef3f99
CRs-Fixed: 3318005
This commit is contained in:
Shiva Krishna Pittala
2022-10-20 11:44:34 +05:30
committed by Madan Koyyalamudi
parent c1231d0824
commit b24b3a7e25
5 changed files with 75 additions and 0 deletions

View File

@@ -1019,4 +1019,12 @@ struct mlo_link_removal_cmd_params {
uint8_t *reconfig_ml_ie;
uint32_t reconfig_ml_ie_size;
};
/*
* struct mlo_link_removal_evt_params - MLO link removal event parameters
* @vdev_id: vdev ID of the link to be removed
*/
struct mlo_link_removal_evt_params {
uint8_t vdev_id;
};
#endif