diff options
| author | Naveen Rawat <naveenrawat@codeaurora.org> | 2016-12-21 16:38:40 -0800 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-12-22 19:32:06 -0800 |
| commit | 21c1a2828478ee28a5e39d8cf1d760723ecccea2 (patch) | |
| tree | d847ca78109137ece7bbd7094cb445cc44486bdc | |
| parent | 28feacbcf00c6f5c51844cfcad2188c1bfc97357 (diff) | |
qcacld-3.0: Do not disable Roaming if multiple STA are active
Do not disable Roaming if multiple STA are active, individual STA
session are controlled by adapter->fast_roaming_allowed.
Change-Id: Ic979f4addd3b9e4f940291817c9a797302e3ac66
CRs-Fixed: 1104238
| -rw-r--r-- | core/sme/src/csr/csr_neighbor_roam.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/sme/src/csr/csr_neighbor_roam.c b/core/sme/src/csr/csr_neighbor_roam.c index 43f75ef84458..fe4a92ba9fd4 100644 --- a/core/sme/src/csr/csr_neighbor_roam.c +++ b/core/sme/src/csr/csr_neighbor_roam.c @@ -1045,8 +1045,7 @@ static void csr_neighbor_roam_info_ctx_init( /* Initialize all the data structures needed for the 11r FT Preauth */ ngbr_roam_info->FTRoamInfo.currentNeighborRptRetryNum = 0; csr_neighbor_roam_purge_preauth_failed_list(pMac); - if (!cds_is_multiple_active_sta_sessions() && - csr_roam_is_roam_offload_scan_enabled(pMac)) { + if (csr_roam_is_roam_offload_scan_enabled(pMac)) { /* * If this is not a INFRA type BSS, then do not send the command * down to firmware.Do not send the START command for |
