Prechádzať zdrojové kódy

qcacld-3.0: Clean up code to avoid duplication

Avoid code duplication by using common definitions
i.e use enum wlan_ml_linfo_subelementid.

Change-Id: Ib8ce8f5e84abe7a8d60ebc220610dcc60483bf81
CRs-Fixed: 3270765
Deeksha Gupta 2 rokov pred
rodič
commit
c9b75a7ecd

+ 3 - 3
core/mac/src/pe/lim/lim_mlo.c

@@ -1012,7 +1012,7 @@ QDF_STATUS lim_store_mlo_ie_raw_info(uint8_t *ie, uint8_t *sta_prof_ie,
 	copied = mlo_ie->num_data;
 	pfrm = buf + copied;
 	while (copied < ml_ie_len && sta_index < WLAN_MLO_MAX_VDEVS &&
-	       pfrm[ID_POS] == WLAN_ML_BV_LINFO_SUBELEMID_PERSTAPROFILE) {
+	       pfrm[ID_POS] == WLAN_ML_LINFO_SUBELEMID_PERSTAPROFILE) {
 		sta_prof = &mlo_ie->sta_profile[sta_index++];
 		sta_data = sta_prof->data;
 
@@ -1033,7 +1033,7 @@ QDF_STATUS lim_store_mlo_ie_raw_info(uint8_t *ie, uint8_t *sta_prof_ie,
 			if (copied < ml_ie_len &&
 			    pfrm[TAG_LEN_POS] == WLAN_MAX_IE_LEN &&
 			    pfrm[WLAN_MAX_IE_LEN + MIN_IE_LEN] ==
-					WLAN_ML_BV_LINFO_SUBELEMID_FRAGMENT) {
+					WLAN_ML_LINFO_SUBELEMID_FRAGMENT) {
 				frag = TRUE;
 				/* skip sta profile frag IE */
 				copied += MIN_IE_LEN;
@@ -1081,7 +1081,7 @@ QDF_STATUS lim_add_frag_ie_for_sta_profile(uint8_t *data, uint16_t *len)
 	for (i = 0; i < (*len - MIN_IE_LEN); i++) {
 		data[consumed++] = buf[index++];
 		if (i && i % WLAN_MAX_IE_LEN == 0) {
-			data[consumed++] = WLAN_ML_BV_LINFO_SUBELEMID_FRAGMENT;
+			data[consumed++] = WLAN_ML_LINFO_SUBELEMID_FRAGMENT;
 			if ((*len - MIN_IE_LEN - i) > WLAN_MAX_IE_LEN)
 				data[consumed++] = WLAN_MAX_IE_LEN;
 			else

+ 3 - 3
core/mac/src/sys/legacy/src/utils/src/parser_api.c

@@ -9119,7 +9119,7 @@ QDF_STATUS populate_dot11f_assoc_rsp_mlo_ie(struct mac_context *mac_ctx,
 		sta_data = sta_pro->data;
 		sta_len_left = sizeof(sta_pro->data);
 
-		*sta_data++ = WLAN_ML_BV_LINFO_SUBELEMID_PERSTAPROFILE;
+		*sta_data++ = WLAN_ML_LINFO_SUBELEMID_PERSTAPROFILE;
 		/* set length later */
 		*sta_data++ = 0;
 		sta_len_left -= 2;
@@ -9755,7 +9755,7 @@ QDF_STATUS populate_dot11f_bcn_mlo_ie(struct mac_context *mac_ctx,
 		sta_pro_present = false;
 		sta_data = sta_pro->data;
 		sta_len_left = sizeof(sta_pro->data);
-		*sta_data++ = WLAN_ML_BV_LINFO_SUBELEMID_PERSTAPROFILE;
+		*sta_data++ = WLAN_ML_LINFO_SUBELEMID_PERSTAPROFILE;
 		*sta_data++ = 0;
 		sta_data += 2; /* sta control */
 		sta_len_left -= 4;
@@ -11149,7 +11149,7 @@ QDF_STATUS populate_dot11f_assoc_req_mlo_ie(struct mac_context *mac_ctx,
 		len_remaining = sizeof(sta_prof->data);
 
 		/* subelement ID 0, length(sta_prof->num_data - 2) */
-		*p_sta_prof++ = WLAN_ML_BV_LINFO_SUBELEMID_PERSTAPROFILE;
+		*p_sta_prof++ = WLAN_ML_LINFO_SUBELEMID_PERSTAPROFILE;
 		*p_sta_prof++ = 0;
 		len_remaining -= 2;