diff options
| author | Mukul Sharma <mukul@codeaurora.org> | 2016-08-30 10:54:39 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-09-14 20:08:06 -0700 |
| commit | 282c26dda92d6dfdc42c43d5a19e92056dfe4a92 (patch) | |
| tree | 6284555cec0093583b25f8c63bf49fd34bd18635 | |
| parent | 01bcc060c6605866c1ab444e515b8f7c93d9cb59 (diff) | |
qcacld-2.0: Fix the conditional logic in icotl handling
prima to qcacld-2.0 propagation
During the handling of FASTREASSOC IOCTL( for VE cert
test case ), we need to avoid rssi checking for found BSS's
while processing scan results. Need to change conditional
logic to meet the requirement.
Change-Id: I8b48a88041bde7cfa086ec2d00da02a700301ea7
CRs-fixed: 773646
| -rw-r--r-- | CORE/SME/src/csr/csrNeighborRoam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CORE/SME/src/csr/csrNeighborRoam.c b/CORE/SME/src/csr/csrNeighborRoam.c index 5b62068b0faa..3761c54e33ad 100644 --- a/CORE/SME/src/csr/csrNeighborRoam.c +++ b/CORE/SME/src/csr/csrNeighborRoam.c @@ -2088,7 +2088,7 @@ csrNeighborRoamProcessScanResults(tpAniSirGlobal pMac, #ifdef WLAN_FEATURE_ROAM_SCAN_OFFLOAD && !csrRoamIsRoamOffloadScanEnabled(pMac) #endif - && ((eSME_ROAM_TRIGGER_SCAN != pNeighborRoamInfo->cfgRoamEn) || + && ((eSME_ROAM_TRIGGER_SCAN != pNeighborRoamInfo->cfgRoamEn) && (eSME_ROAM_TRIGGER_FAST_ROAM != pNeighborRoamInfo->cfgRoamEn))) { /* * If RSSI is lower than the lookup threshold, then continue. |
