Browse Source

qcacld-3.0: Update input type of calling sap_chan_sel_init()

Input parameter of sap_chan_sel_init() update from mac handle to struct
mac context, update place where sap_chan_sel_init() being invoked when
AFC enable.

Change-Id: I2fb6af59f02c83f28bd2fad43d287552b662dfbe
CRs-Fixed: 3640939
Will Huang 1 year ago
parent
commit
4ab38d5c62
1 changed files with 4 additions and 5 deletions
  1. 4 5
      core/sap/src/sap_ch_select.c

+ 4 - 5
core/sap/src/sap_ch_select.c

@@ -2994,17 +2994,16 @@ sap_max_weight_invalidate_2ghz_channels(struct sap_sel_ch_info *spect_info)
  * sap_compute_spect_max_power_weight() - Compute channel weight use max power
  *                                        factor
  * @spect_info: pointer to SAP channel select structure of spectrum info
- * @mac_handle: mac handle
+ * @mac: mac context
  * @sap_ctx: pointer to SAP context
  *
  * Return: None
  */
 static void
 sap_compute_spect_max_power_weight(struct sap_sel_ch_info *spect_info,
-				   mac_handle_t mac_handle,
+				   struct mac_context *mac,
 				   struct sap_context *sap_ctx)
 {
-	struct mac_context *mac = MAC_CONTEXT(mac_handle);
 	uint32_t i;
 	struct sap_ch_info *spect_ch = spect_info->ch_info;
 
@@ -3135,12 +3134,12 @@ qdf_freq_t sap_afc_dcs_sel_chan(struct sap_context *sap_ctx,
 	 * not included in current ACS range, ignore ACS range check
 	 * in this scenario so that SAP can move to new SP channel.
 	 */
-	sap_chan_sel_init(mac_handle, spect_info, sap_ctx,
+	sap_chan_sel_init(mac_ctx, spect_info, sap_ctx,
 			  is_sap_afc_dcs_skip_acs(sap_ctx));
 
 	sap_max_weight_invalidate_2ghz_channels(spect_info);
 
-	sap_compute_spect_max_power_weight(spect_info, mac_handle, sap_ctx);
+	sap_compute_spect_max_power_weight(spect_info, mac_ctx, sap_ctx);
 
 	sap_sort_chl_weight_all(mac_ctx, sap_ctx, spect_info,
 				eCSR_DOT11_MODE_11a, REGDOMAIN_FCC, pref_bw);