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
Šī revīzija ir iekļauta:
Arun Kumar Khandavalli
2022-03-29 10:34:48 +05:30
revīziju iesūtīja Madan Koyyalamudi
vecāks dd3633e187
revīzija 39d69c49ba

Parādīt failu

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