qcacmn: Use target if component for VDEV manager response path

Currently, VDEV manager responses are using legacy path instead of
target_if, vdev_mgr and os_if components. As the driver implementation
is planned for converged model, legacy implementation will be moved to
the respective components.

To avoid rework, Use target_if, vdev_mgr and os_if components to process
the FW responses corresponding to the vdev manager.

Change-Id: I778f6de93481fc730383e8f8e1c604f173947d69
CRs-Fixed: 3093776
This commit is contained in:
Bapiraju Alla
2021-12-14 17:23:54 +05:30
committed by Madan Koyyalamudi
parent df5cc86477
commit 76caeb9b44
11 changed files with 380 additions and 0 deletions

View File

@@ -4590,5 +4590,18 @@ wmi_unified_pdev_set_mec_timer(struct wmi_unified *wmi_handle,
*/
QDF_STATUS wmi_unified_send_set_mac_addr(struct wmi_unified *wmi_handle,
struct set_mac_addr_params *params);
/**
* wmi_extract_update_mac_address_event() - Extract update MAC address event
* @wmi_handle: WMI handle
* @evt_buf: event buffer
* @vdev_id: VDEV ID
* @status: FW status for the set MAC address operation
*
* Return: QDF_STATUS_SUCCESS for success or error code
*/
QDF_STATUS wmi_extract_update_mac_address_event(wmi_unified_t wmi_handle,
void *evt_buf, uint8_t *vdev_id,
uint8_t *status);
#endif
#endif /* _WMI_UNIFIED_API_H_ */