qcacmn: Remove unused structure while sending probe resp template

While sending probe response template down to firmware, driver
populates some items in data-structure which is not getting used.

Remove those unused items and send only what is needed.

CRs-Fixed: 2130437
Change-Id: I1878f523f0f88c354854dfdb75e60e66c4ecb0e8
This commit is contained in:
Krunal Soni
2017-11-14 15:42:48 -08:00
committed by snandini
parent 92ab8d3c13
commit 8942686c5e
2 changed files with 5 additions and 8 deletions

View File

@@ -1490,15 +1490,13 @@ QDF_STATUS wmi_unified_process_update_edca_param(void *wmi_hdl,
*/
QDF_STATUS wmi_unified_probe_rsp_tmpl_send_cmd(void *wmi_hdl,
uint8_t vdev_id,
struct wmi_probe_resp_params *probe_rsp_info,
uint8_t *frm)
struct wmi_probe_resp_params *probe_rsp_info)
{
wmi_unified_t wmi_handle = (wmi_unified_t) wmi_hdl;
if (wmi_handle->ops->send_probe_rsp_tmpl_send_cmd)
return wmi_handle->ops->send_probe_rsp_tmpl_send_cmd(wmi_handle,
vdev_id, probe_rsp_info,
frm);
vdev_id, probe_rsp_info);
return QDF_STATUS_E_FAILURE;
}