qcacmn: Move ctrl_path_twt_stats functions to appropriate files

Move ctrl_path_twt_stats related functions to appropriate source
and header files.

CRs-Fixed:  2871393
Change-Id: I7043259c102e5aee6cbb13260ce2bb0c53c17853
This commit is contained in:
Srinivas Girigowda
2021-02-04 13:41:56 -08:00
committed by snandini
parent 7bcb5cd4b9
commit 14bfc9057c
6 changed files with 215 additions and 212 deletions

View File

@@ -38,6 +38,30 @@ QDF_STATUS
wmi_unified_infra_cp_stats_request_send(
wmi_unified_t wmi_handle,
struct infra_cp_stats_cmd_info *param);
/**
* wmi_unified_extract_infra_cp_stats() - extract various infra cp statistics
* @wmi_handle: wmi handle
* @evt_buf: event buffer
* @evt_buf_len: length of event buffer
* @params: pointer to store the extracted event info
*
* This function extracts the infra cp statistics from the event
*
* Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
*/
QDF_STATUS
wmi_unified_extract_infra_cp_stats(wmi_unified_t wmi_handle,
void *evt_buf, uint32_t evt_buf_len,
struct infra_cp_stats_event *params);
QDF_STATUS wmi_stats_handler(void *buff, int32_t len,
struct infra_cp_stats_event *params);
QDF_STATUS
extract_infra_cp_stats_tlv(wmi_unified_t wmi_handle, void *evt_buf,
uint32_t evt_buf_len,
struct infra_cp_stats_event *params);
#endif /* WLAN_SUPPORT_INFRA_CTRL_PATH_STATS */
/**