Browse Source

qcacmn: change name for ZeroCACDFS

The term "agile" is used by hardware for swift/fast channel change.
Use precac for the zeroCACDFS instead.

Change-Id: I35f4d61cc93b3542feb8b286cbdf3a4474df5a75
Crs-fixed: 1073945
Nandha Kishore Easwaran 8 years ago
parent
commit
b423f1f3f8
3 changed files with 5 additions and 5 deletions
  1. 2 2
      dp/inc/cdp_txrx_stats_struct.h
  2. 2 2
      wmi/inc/wmi_unified_param.h
  3. 1 1
      wmi/src/wmi_unified_non_tlv.c

+ 2 - 2
dp/inc/cdp_txrx_stats_struct.h

@@ -470,8 +470,8 @@ typedef enum _ol_ath_param_t {
 	OL_ATH_PARAM_SECONDARY_OFFSET_IE = 342,
 	OL_ATH_PARAM_WIDE_BAND_SUB_ELEMENT = 343,
 	OL_ATH_PARAM_PREFERRED_UPLINK = 344,
-	OL_ATH_PARAM_AGILE_MODE_ENABLE = 345,
-	OL_ATH_PARAM_PRE_CAC_TIMEOUT = 346,
+	OL_ATH_PARAM_PRECAC_ENABLE = 345,
+	OL_ATH_PARAM_PRECAC_TIMEOUT = 346,
 } ol_ath_param_t;
 
 /*

+ 2 - 2
wmi/inc/wmi_unified_param.h

@@ -379,7 +379,7 @@ struct vdev_delete_params {
  * @is_chan_passive: is this passive channel
  * @allow_ht: HT allowed in chan
  * @allow_vht: VHT allowed on chan
- * @dfs_set_agile: is agile mode
+ * @set_agile: is agile mode
  * @phy_mode: phymode (vht80 or ht40 or ...)
  * @cfreq1: centre frequency on primary
  * @cfreq2: centre frequency on secondary
@@ -401,7 +401,7 @@ struct channel_param {
 		is_chan_passive:1,
 		allow_ht:1,
 		allow_vht:1,
-		dfs_set_agile:1;
+		set_agile:1;
 	uint32_t phy_mode;
 	uint32_t cfreq1;
 	uint32_t cfreq2;

+ 1 - 1
wmi/src/wmi_unified_non_tlv.c

@@ -193,7 +193,7 @@ QDF_STATUS send_vdev_start_cmd_non_tlv(wmi_unified_t wmi,
 	if (param->channel.dfs_set_cfreq2)
 		WMI_SET_CHANNEL_FLAG(&cmd->chan, WMI_CHAN_FLAG_DFS_CFREQ2);
 
-	if (param->channel.dfs_set_agile)
+	if (param->channel.set_agile)
 		WMI_SET_CHANNEL_FLAG(&cmd->chan, WMI_CHAN_FLAG_AGILE_MODE);
 
 	if (param->channel.half_rate)