qcacmn: Add support for WMI DIAG events over CE7

Add support for handling firmware WMI DIAG events over CE7.

Change-Id: I3d6c0b08313e816809a65eb77d9728fc4b4488f3
CRs-Fixed: 2787010
This commit is contained in:
Karthik Kantamneni
2020-08-27 17:22:14 +05:30
committed by snandini
szülő 619e46370d
commit 268ab400cd
5 fájl változott, egészen pontosan 116 új sor hozzáadva és 0 régi sor törölve

Fájl megtekintése

@@ -455,6 +455,27 @@ QDF_STATUS
wmi_unified_connect_htc_service(struct wmi_unified *wmi_handle,
HTC_HANDLE htc_handle);
#ifdef WLAN_FEATURE_WMI_DIAG_OVER_CE7
/**
* wmi_diag_connect_pdev_htc_service()
* WMI DIAG API to get connect to HTC service
* @wmi_handle: handle to WMI.
* @htc_handle: handle to HTC.
*
* Return: QDF_STATUS_SUCCESS on success and QDF_STATUS_E_FAULT for failure
*/
QDF_STATUS
wmi_diag_connect_pdev_htc_service(struct wmi_unified *wmi_handle,
HTC_HANDLE htc_handle);
#else
static inline QDF_STATUS
wmi_diag_connect_pdev_htc_service(struct wmi_unified *wmi_handle,
HTC_HANDLE htc_handle)
{
return QDF_STATUS_SUCCESS;
}
#endif
/*
* WMI API to verify the host has enough credits to suspend
* @param wmi_handle : handle to WMI.