qcacmn: SAP is not advertising 20TU probe response

SAP not advertising 20TU probe response when
FILS Discovery is disbaled through ini.

Updated WMI fields to enable 20TU probe response
when 6Ghz SAP is operating.

Change-Id: Idc4b95047d2149f68a68a434afda4d325a5d0547
CRs-Fixed: 2600485
This commit is contained in:
Sandeep Puligilla
2020-01-10 14:16:30 -08:00
committed by nshrivas
parent 99028d078d
commit a94efa0175
3 changed files with 13 additions and 6 deletions

View File

@@ -12337,8 +12337,10 @@ send_vdev_fils_enable_cmd_send(struct wmi_unified *wmi_handle,
(wmi_enable_fils_cmd_fixed_param));
cmd->vdev_id = param->vdev_id;
cmd->fd_period = param->fd_period;
WMI_LOGD("%s: vdev id: %d fd_period: %d",
__func__, cmd->vdev_id, cmd->fd_period);
if (param->send_prb_rsp_frame)
cmd->flags |= WMI_FILS_FLAGS_BITMAP_BCAST_PROBE_RSP;
WMI_LOGD("%s: vdev id: %d fd_period: %d cmd->Flags %d",
__func__, cmd->vdev_id, cmd->fd_period, cmd->flags);
wmi_mtrace(WMI_ENABLE_FILS_CMDID, cmd->vdev_id, cmd->fd_period);
if (wmi_unified_cmd_send(wmi_handle, buf, len,
WMI_ENABLE_FILS_CMDID)) {