qcacmn: Do not process MLO ie if no EHT ie

Some AP/GO includes MLO IE but no EHT IE, do not process
MLO IE if no EHT IE

Change-Id: Ia79fda0093f16acd0eff1f526c45e6cfd1d454dc
CRs-Fixed: 3323054
This commit is contained in:
Liangwei Dong
2022-10-29 09:00:13 +08:00
committed by Madan Koyyalamudi
부모 97ea3b37d1
커밋 e3496e0420

파일 보기

@@ -2232,6 +2232,10 @@ static void util_scan_update_ml_info(struct scan_cache_entry *scan_entry)
uint16_t multi_link_ctrl;
uint8_t offset;
if (!scan_entry->ie_list.ehtcap && scan_entry->ie_list.multi_link_bv) {
scan_entry->ie_list.multi_link_bv = NULL;
return;
}
if (!scan_entry->ie_list.multi_link_bv)
return;