qcacld-3.0: Set passive scan as false in ACS scan req

Currently the driver doesn't set the passive scan req flag
as false which results in passive scan, and thus introduces
latency.

Fix is to set passive scan as false in ACS scan req.

Change-Id: I1274a4ccb9d99d568c32aeea1a65e4637a82b9c8
CRs-Fixed: 2372103
This commit is contained in:
gaurank kathpalia
2018-12-24 13:47:39 +05:30
committed by nshrivas
parent ab50883975
commit ece50259ec

View File

@@ -1004,6 +1004,7 @@ QDF_STATUS sap_channel_sel(struct sap_context *sap_context)
req->scan_req.scan_id = scan_id;
vdev_id = wlan_vdev_get_id(vdev);
req->scan_req.vdev_id = vdev_id;
req->scan_req.scan_f_passive = false;
req->scan_req.scan_req_id = sap_context->req_id;
req->scan_req.scan_priority = SCAN_PRIORITY_HIGH;
req->scan_req.scan_f_bcast_probe = true;