Bläddra i källkod

qcacld-3.0: Fix next scan command logic

If a candidate is found do not mark the next scan command
as failure.

Change-Id: If47befbac946941fdc73161a6dd48d36f3ef566e
CRs-Fixed: 2530378
Tushnim Bhattacharyya 5 år sedan
förälder
incheckning
da631543bd
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      core/sme/src/csr/csr_api_scan.c

+ 1 - 1
core/sme/src/csr/csr_api_scan.c

@@ -958,7 +958,7 @@ csr_scan_get_next_command_state(struct mac_context *mac_ctx,
 				mac_ctx,
 				session_id,
 				session->scan_info.profile);
-		if ((!channel) || scan_status) {
+		if ((!channel) && scan_status) {
 			NextCommand = eCsrNexteScanForSsidFailure;
 			sme_err("next Scan For Ssid Failure %d %d",
 				channel, scan_status);