qcacmn: Add support to offload FILS Discovery to FW

Construct the FILS Discovery frame template and send
template to FW.

Change-Id: I1052b9b8240ea9461e19bb70887b49aabffc4e05
This commit is contained in:
Rhythm Patwa
2019-09-24 17:01:24 -07:00
committed by nshrivas
parent 7232cb187e
commit c5068e341f
5 changed files with 87 additions and 0 deletions

View File

@@ -464,6 +464,17 @@ QDF_STATUS wmi_unified_packet_log_disable_send(wmi_unified_t wmi_handle,
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS
wmi_unified_fd_tmpl_send_cmd(wmi_unified_t wmi_handle,
struct fils_discovery_tmpl_params *param)
{
if (wmi_handle->ops->send_fd_tmpl_cmd)
return wmi_handle->ops->send_fd_tmpl_cmd(wmi_handle,
param);
return QDF_STATUS_E_FAILURE;
}
QDF_STATUS
wmi_unified_beacon_tmpl_send_cmd(wmi_unified_t wmi_handle,
struct beacon_tmpl_params *param)