Przeglądaj źródła

qcacld-3.0: Remove the incorrect mlo ie log

whenever a probe response is parsed the driver looks for ml ie
capability, in the legacy ap's the ml ie will not be present for
which driver is logging an error message which as such is not an error.

Remove the incorrect mlo ie error log.

Change-Id: I00995c949b1ef22569ff62e0962d5e803885fa38
CRs-Fixed: 3161556
Arun Kumar Khandavalli 3 lat temu
rodzic
commit
39d69c49ba

+ 1 - 3
core/mac/src/sys/legacy/src/utils/src/parser_api.c

@@ -7680,10 +7680,8 @@ sir_convert_mlo_probe_rsp_frame2_struct(tDot11fProbeResponse *pr,
 	if (!pr)
 		return QDF_STATUS_E_NULL_VALUE;
 
-	if (!pr->mlo_ie.present) {
-		pe_err("MLO IE not present");
+	if (!pr->mlo_ie.present)
 		return QDF_STATUS_E_NULL_VALUE;
-	}
 
 	qdf_mem_zero((uint8_t *)mlo_ie_ptr, sizeof(tSirMultiLink_IE));