qcacmn: WMI tlv support to profile commands

WMI_WLAN_PROFILE commands support for tlv path.
Add WMI profile enable and trigger commands in tlv path

Change-Id: I10f867b181b559b82c097d6a61236f2145549238
This commit is contained in:
Gurumoorthi Gnanasambandhan
2019-12-18 15:37:27 +05:30
committed by nshrivas
parent 0d8578f313
commit c4880c3a0b
4 changed files with 209 additions and 0 deletions

View File

@@ -1146,6 +1146,17 @@ wmi_unified_wlan_profile_trigger_cmd_send(wmi_unified_t wmi_handle,
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS
wmi_unified_wlan_profile_hist_intvl_cmd_send(wmi_unified_t wmi_handle,
struct wlan_profile_params *param)
{
if (wmi_handle->ops->send_wlan_profile_hist_intvl_cmd)
return wmi_handle->ops->send_wlan_profile_hist_intvl_cmd(
wmi_handle, param);
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS
wmi_unified_set_chan_cmd_send(wmi_unified_t wmi_handle,
struct channel_param *param)