Browse Source

qcacld-3.0: Remove op_chan and wlan_reg_freq_to_chan

Remove unused op_chan local variable. Remove call to
wlan_reg_freq_to_chan.

Change-Id: I351fe9df7f419fe9345dce73c948d34a73bfcc8a
CRs-Fixed: 2940016
Liangwei Dong 5 years ago
parent
commit
17b35c18f9
1 changed files with 6 additions and 7 deletions
  1. 6 7
      core/sme/src/csr/csr_api_roam.c

+ 6 - 7
core/sme/src/csr/csr_api_roam.c

@@ -18139,15 +18139,18 @@ csr_fetch_valid_ch_lst(struct mac_context *mac_ctx,
 	uint32_t *ch_freq_list = NULL;
 	uint8_t i = 0, num_channels = 0;
 	enum band_info band = BAND_ALL;
-	uint8_t op_chan;
 	uint32_t op_freq;
 	struct csr_roam_session *session;
 
 	session = &mac_ctx->roam.roamSession[session_id];
 	op_freq = session->connectedProfile.op_freq;
 	if (CSR_IS_ROAM_INTRA_BAND_ENABLED(mac_ctx)) {
-		op_chan = wlan_reg_freq_to_chan(mac_ctx->pdev, op_freq);
-		band = csr_get_rf_band(op_chan);
+		if (WLAN_REG_IS_5GHZ_CH_FREQ(op_freq))
+			band = BAND_5G;
+		else if (WLAN_REG_IS_24GHZ_CH_FREQ(op_freq))
+			band = BAND_2G;
+		else
+			band = BAND_UNKNOWN;
 	}
 	host_channels = sizeof(mac_ctx->roam.valid_ch_freq_list);
 	status = csr_get_cfg_valid_channels(mac_ctx,
@@ -19678,7 +19681,6 @@ csr_roam_offload_scan(struct mac_context *mac_ctx, uint8_t session_id,
 	struct roam_ext_params *roam_params_dst;
 	struct roam_ext_params *roam_params_src;
 	uint8_t i, temp_session_id;
-	uint8_t op_channel;
 	bool prev_roaming_state;
 	enum csr_akm_type roam_profile_akm = eCSR_AUTH_TYPE_UNKNOWN;
 	uint32_t fw_akm_bitmap;
@@ -19903,9 +19905,6 @@ csr_roam_offload_scan(struct mac_context *mac_ctx, uint8_t session_id,
 			QDF_MAC_ADDR_ARRAY(roam_params_dst->bssid_favored[i].bytes),
 			roam_params_dst->bssid_favored_factor[i]);
 	}
-
-	op_channel = wlan_reg_freq_to_chan(mac_ctx->pdev,
-					   session->connectedProfile.op_freq);
 	req_buf->hi_rssi_scan_max_count =
 		roam_info->cfgParams.hi_rssi_scan_max_count;
 	req_buf->hi_rssi_scan_delay =