Browse Source

qcacmn: Replace channel with frequency in struct unsafe_ch_list

Replace channel ID with frequency in struct unsafe_ch_list.

Change-Id: I0a9426f985edb65387f2613519b487d701cf344d
CRs-Fixed: 2540583
Tushnim Bhattacharyya 5 years ago
parent
commit
23990a2d01

+ 10 - 10
umac/regulatory/core/src/reg_lte.c

@@ -62,7 +62,7 @@ static QDF_STATUS reg_process_ch_avoid_freq(struct wlan_objmgr_psoc *psoc,
 
 	for (i = 0; i < psoc_priv_obj->avoid_freq_list.ch_avoid_range_cnt;
 		i++) {
-		if (psoc_priv_obj->unsafe_chan_list.ch_cnt >= NUM_CHANNELS) {
+		if (psoc_priv_obj->unsafe_chan_list.chan_cnt >= NUM_CHANNELS) {
 			reg_warn("LTE Coex unsafe channel list full");
 			break;
 		}
@@ -106,10 +106,10 @@ static QDF_STATUS reg_process_ch_avoid_freq(struct wlan_objmgr_psoc *psoc,
 
 		for (ch_loop = start_ch_idx; ch_loop <= end_ch_idx;
 			ch_loop++) {
-			psoc_priv_obj->unsafe_chan_list.ch_list[
-				psoc_priv_obj->unsafe_chan_list.ch_cnt++] =
-				REG_CH_NUM(ch_loop);
-			if (psoc_priv_obj->unsafe_chan_list.ch_cnt >=
+			psoc_priv_obj->unsafe_chan_list.chan_freq_list[
+				psoc_priv_obj->unsafe_chan_list.chan_cnt++] =
+				REG_CH_TO_FREQ(ch_loop);
+			if (psoc_priv_obj->unsafe_chan_list.chan_cnt >=
 				NUM_CHANNELS) {
 				reg_warn("LTECoex unsafe ch list full");
 				break;
@@ -118,19 +118,19 @@ static QDF_STATUS reg_process_ch_avoid_freq(struct wlan_objmgr_psoc *psoc,
 	}
 
 	reg_debug("number of unsafe channels is %d ",
-		  psoc_priv_obj->unsafe_chan_list.ch_cnt);
+		  psoc_priv_obj->unsafe_chan_list.chan_cnt);
 
-	if (!psoc_priv_obj->unsafe_chan_list.ch_cnt) {
+	if (!psoc_priv_obj->unsafe_chan_list.chan_cnt) {
 		reg_debug("No valid ch are present in avoid freq event");
 		return QDF_STATUS_SUCCESS;
 	}
 
-	for (ch_loop = 0; ch_loop < psoc_priv_obj->unsafe_chan_list.ch_cnt;
+	for (ch_loop = 0; ch_loop < psoc_priv_obj->unsafe_chan_list.chan_cnt;
 		ch_loop++) {
 		if (ch_loop >= NUM_CHANNELS)
 			break;
-		reg_debug("channel %d is not safe",
-			  psoc_priv_obj->unsafe_chan_list.ch_list[ch_loop]);
+		reg_debug("channel freq %d is not safe",
+			  psoc_priv_obj->unsafe_chan_list.chan_freq_list[ch_loop]);
 	}
 
 	return QDF_STATUS_SUCCESS;

+ 4 - 4
umac/regulatory/dispatcher/inc/reg_services_public_struct.h

@@ -992,12 +992,12 @@ struct ch_avoid_ind_type {
 
 /**
  * struct unsafe_ch_list
- * @ch_cnt: no.of channels
- * @ch_list: channel list
+ * @chan_cnt: no.of channels
+ * @chan_freq_list: channel frequency list
  */
 struct unsafe_ch_list {
-	uint16_t ch_cnt;
-	uint16_t ch_list[NUM_CHANNELS];
+	uint16_t chan_cnt;
+	uint16_t chan_freq_list[NUM_CHANNELS];
 };
 
 /**