qcacmn: Add case when to disable burst scan

Currently, file transfer from DUT to comp device is slower
than expected. Disable burst scan in STA+GO/CLI scenario to
resolve this.

Change-Id: Ieded4aaa54f233cc288d6b6f3ef7051bfe5ec81f
CRs-fixed: 2703285
This commit is contained in:
Lincoln Tran
2020-06-25 11:17:31 -07:00
committed by nshrivas
parent fd5e8cd07c
commit a6029b9c59

View File

@@ -704,7 +704,8 @@ static void scm_req_update_concurrency_params(struct wlan_objmgr_vdev *vdev,
break;
}
if (ndi_present) {
if (ndi_present ||
((go_present || p2p_cli_present) && sta_active)) {
req->scan_req.burst_duration = 0;
break;
}