|
@@ -19852,14 +19852,6 @@ csr_roam_offload_scan(tpAniSirGlobal mac_ctx, uint8_t session_id,
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
|
}
|
|
|
|
|
|
- if ((ROAM_SCAN_OFFLOAD_START == command &&
|
|
|
- REASON_CTX_INIT != reason) &&
|
|
|
- (session->pCurRoamProfile &&
|
|
|
- session->pCurRoamProfile->supplicant_disabled_roaming)) {
|
|
|
- sme_debug("Supplicant disabled driver roaming");
|
|
|
- return QDF_STATUS_E_FAILURE;
|
|
|
- }
|
|
|
-
|
|
|
if (command == ROAM_SCAN_OFFLOAD_START &&
|
|
|
(session->pCurRoamProfile &&
|
|
|
session->pCurRoamProfile->driver_disabled_roaming)) {
|
|
@@ -19875,6 +19867,14 @@ csr_roam_offload_scan(tpAniSirGlobal mac_ctx, uint8_t session_id,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ if ((ROAM_SCAN_OFFLOAD_START == command &&
|
|
|
+ REASON_CTX_INIT != reason) &&
|
|
|
+ (session->pCurRoamProfile &&
|
|
|
+ session->pCurRoamProfile->supplicant_disabled_roaming)) {
|
|
|
+ sme_debug("Supplicant disabled driver roaming");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
if (0 == csr_roam_is_roam_offload_scan_enabled(mac_ctx)) {
|
|
|
sme_err("isRoamOffloadScanEnabled not set");
|
|
|
return QDF_STATUS_E_FAILURE;
|
|
@@ -19896,7 +19896,7 @@ csr_roam_offload_scan(tpAniSirGlobal mac_ctx, uint8_t session_id,
|
|
|
/* Roaming is not supported currently for FILS akm */
|
|
|
if (session->pCurRoamProfile && CSR_IS_AUTH_TYPE_FILS(
|
|
|
session->pCurRoamProfile->AuthType.authType[0]) &&
|
|
|
- !mac_ctx->is_fils_roaming_supported) {
|
|
|
+ !mac_ctx->is_fils_roaming_supported) {
|
|
|
sme_info("FILS Roaming not suppprted by fw");
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|