瀏覽代碼

qcacld-3.0: Fix the 2.4 GHz band HE caps in VDEV IE data

Reset the HE capability data buffer after the 5 GHz HE capabilities
are configured to FW to fix the malformed data in 2.4 GHz HE
capability data.

Change-Id: I8147ffdae1990cf1997650f0790a27ccbb6ff1fe
CRs-Fixed: 3253505
Kiran Kumar Lokere 2 年之前
父節點
當前提交
2c6811feb4
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      core/mac/src/pe/lim/lim_utils.c

+ 3 - 0
core/mac/src/pe/lim/lim_utils.c

@@ -7767,7 +7767,10 @@ QDF_STATUS lim_send_he_caps_ie(struct mac_context *mac_ctx,
 		pe_err("Unable send HE Cap IE for 5GHZ band, status: %d",
 			status_5g);
 
+	qdf_mem_zero(he_caps, he_cap_total_len);
+	he_caps[0] = DOT11F_EID_HE_CAP;
 	he_caps[1] = SIR_MAC_HE_CAP_MIN_LEN;
+	qdf_mem_copy(&he_caps[2], HE_CAP_OUI_TYPE, HE_CAP_OUI_SIZE);
 	lim_set_he_caps(mac_ctx, session, he_caps, he_cap_total_len,
 			CDS_BAND_2GHZ);
 	he_cap = (struct he_capability_info *)(&he_caps[2 + HE_CAP_OUI_SIZE]);