qcacmn: Add handling for mlo link disable event

Add code changes to handle new wmi_mlo_link_disable_event
Extract the wmi event params and store in host defined
structure.

Change-Id: I6893bfa4da7b27f4a9b1ce2936057bb3576a317c
CRs-Fixed: 3458680
This commit is contained in:
Amruta Kulkarni
2023-05-02 19:05:09 -07:00
committed by Madan Koyyalamudi
parent 2b2a9fc6c8
commit c16aa9d544
12 changed files with 240 additions and 4 deletions

View File

@@ -194,6 +194,19 @@ QDF_STATUS wmi_extract_mlo_link_state_info_event(
void *evt_buf,
struct ml_link_state_info_event *params);
/**
* wmi_extract_mlo_link_disable_request_evt() - Extract fixed parameters TLV
* from the MLO link disable request WMI event
* @wmi: wmi handle
* @buf: pointer to event buffer
* @params: MLO link disable request event parameters
*
* Return: QDF_STATUS_SUCCESS of operation
*/
QDF_STATUS wmi_extract_mlo_link_disable_request_evt(
struct wmi_unified *wmi,
void *buf,
struct mlo_link_disable_request_evt_params *params);
#endif /* WLAN_FEATURE_11BE */
#endif /*_WMI_UNIFIED_11BE_API_H_*/