소스 검색

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 년 전
부모
커밋
39d69c49ba
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 3
      core/mac/src/sys/legacy/src/utils/src/parser_api.c

+ 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));