Merge "qcacmn: Add WMI support for AWGN interference detection"

Цей коміт міститься в:
Linux Build Service Account
2021-06-30 04:12:54 -07:00
зафіксовано Gerrit - the friendly Code Review server
джерело a9babbde7e 15c52e32f7
коміт b845bfdce4
5 змінених файлів з 122 додано та 4 видалено

Переглянути файл

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020, The Linux Foundation. All rights reserved.
* Copyright (c) 2020-2021, The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -57,6 +57,18 @@ QDF_STATUS wmi_extract_dcs_im_tgt_stats(
void *evt_buf,
struct wlan_host_dcs_im_tgt_stats *wlan_stat);
/*
* wmi_extract_dcs_awgn_info() - extract DCS AWGN interference info from event
* @wmi_handle: WMI handle
* @evt_buf: Pointer to event buffer
* @awgn_info: Pointer to hold AWGN interference info
*
* Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAILURE for failure
*/
QDF_STATUS
wmi_extract_dcs_awgn_info(wmi_unified_t wmi_hdl, void *evt_buf,
struct wlan_host_dcs_awgn_info *awgn_info);
/**
* wmi_send_dcs_pdev_param() - send dcs pdev param
* @wmi_handle: wmi handle

Переглянути файл

@@ -1642,6 +1642,9 @@ QDF_STATUS (*extract_dcs_im_tgt_stats)(
wmi_unified_t wmi_handle,
void *evt_buf,
struct wlan_host_dcs_im_tgt_stats *wlan_stat);
QDF_STATUS (*extract_dcs_awgn_info)(wmi_unified_t wmi_handle, void *evt_buf,
struct wlan_host_dcs_awgn_info *awgn_info);
#else
QDF_STATUS (*extract_dcs_interference_type)(wmi_unified_t wmi_handle,
void *evt_buf, struct wmi_host_dcs_interference_param *param);