瀏覽代碼

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