Parcourir la source

qcacmn: Change log level to debug for "Failed to create a scan entry"

Its pretty common to simulate malformed beacon/brobe response
frames leading to print "Failed to create a scan entry".

Change-Id: Id89c4e66f0ac449b02e774067932e65d1da9ddc8
CRs-Fixed: 2431173
Om Prakash Tripathi il y a 6 ans
Parent
commit
0e3c541835
1 fichiers modifiés avec 2 ajouts et 3 suppressions
  1. 2 3
      umac/scan/dispatcher/src/wlan_scan_utils_api.c

+ 2 - 3
umac/scan/dispatcher/src/wlan_scan_utils_api.c

@@ -1463,9 +1463,8 @@ util_scan_parse_beacon_frame(struct wlan_objmgr_pdev *pdev,
 						frm_subtype, rx_param,
 						scan_list);
 
-	if (QDF_IS_STATUS_ERROR(status)) {
-		scm_err_rl("Failed to create a scan entry");
-	}
+	if (QDF_IS_STATUS_ERROR(status))
+		scm_debug_rl("Failed to create a scan entry");
 
 	return status;
 }