Sfoglia il codice sorgente

qcacld-3.0: Move the channel width enum to cds

Currently channel width has different enum values in
different modules. Move the channel width enum definition
to CDS to maintain single channel width enum value in
the driver

Change-Id: I6a46d0c02546263080a15a3ec7c52486fc51e98e
CRs-Fixed: 983914
Kiran Kumar Lokere 9 anni fa
parent
commit
13644679a2

+ 21 - 19
core/cds/inc/cds_reg_service.h

@@ -248,24 +248,25 @@ struct regulatory {
 };
 
 /**
- * enum chan_width: channel width
- *
- * @CHAN_WIDTH_0MHZ: channel disabled or invalid
- * @CHAN_WIDTH_5MHZ: channel width 5 MHZ
- * @CHAN_WIDTH_10MHZ: channel width 10 MHZ
- * @CHAN_WIDTH_20MHZ: channel width 20 MHZ
- * @CHAN_WIDTH_40MHZ: channel width 40 MHZ
- * @CHAN_WIDTH_80MHZ: channel width 80MHZ
- * @CHAN_WIDTH_160MHZ: channel width 160 MHZ
+ * phy_ch_width - channel width
+ * @CH_WIDTH_20MHZ: channel width 20 MHz
+ * @CH_WIDTH_40MHZ: channel width 40 MHz
+ * @CH_WIDTH_80MHZ: channel width 80MHz
+ * @CH_WIDTH_160MHZ: channel width 160 MHz
+ * @CH_WIDTH_80P80MHZ: channel width 160MHz(80+80)
+ * @CH_WIDTH_5MHZ: channel width 5MHz
+ * @CH_WIDTH_10MHZ: channel width 10MHz
  */
-enum channel_width {
-	CHAN_WIDTH_0MHZ,
-	CHAN_WIDTH_5MHZ,
-	CHAN_WIDTH_10MHZ,
-	CHAN_WIDTH_20MHZ,
-	CHAN_WIDTH_40MHZ,
-	CHAN_WIDTH_80MHZ,
-	CHAN_WIDTH_160MHZ
+enum phy_ch_width {
+	CH_WIDTH_20MHZ = 0,
+	CH_WIDTH_40MHZ = 1,
+	CH_WIDTH_80MHZ = 2,
+	CH_WIDTH_160MHZ = 3,
+	CH_WIDTH_80P80MHZ = 4,
+	CH_WIDTH_5MHZ = 5,
+	CH_WIDTH_10MHZ = 6,
+	CH_WIDTH_INVALID = 7,
+	CH_WIDTH_MAX
 };
 
 extern const struct chan_map chan_mapping[NUM_CHANNELS];
@@ -287,8 +288,9 @@ QDF_STATUS cds_put_dfs_region(uint8_t dfs_region);
 
 bool cds_is_dsrc_channel(uint16_t);
 enum channel_state cds_get_bonded_channel_state(uint32_t chan_num,
-						enum channel_width chan_width);
-enum channel_width cds_get_max_channel_bw(uint32_t chan_num);
+					   enum phy_ch_width chan_width);
+
+enum phy_ch_width cds_get_max_channel_bw(uint32_t chan_num);
 
 QDF_STATUS cds_set_reg_domain(void *client_ctxt, v_REGDOMAIN_t reg_domain);
 QDF_STATUS cds_put_default_country(uint8_t *def_country);

+ 1 - 18
core/cds/inc/cds_regdomain.h

@@ -480,23 +480,6 @@ enum dfs_region {
 	DFS_MKK_REGION = 3
 };
 
-/**
- * enum ch_width - channel width
- * @CH_WIDTH_20MHZ: channel width 20 MHz
- * @CH_WIDTH_40MHZ: channel width 40 MHz
- * @CH_WIDTH_80MHZ: channel width 80MHz
- * @CH_WIDTH_160MHZ: channel width 160 MHz
- * @CH_WIDTH_80P80MHZ: channel width 160MHz(80+80)
- */
-enum ch_width {
-	CH_WIDTH_20MHZ = 0,
-	CH_WIDTH_40MHZ = 1,
-	CH_WIDTH_80MHZ = 2,
-	CH_WIDTH_160MHZ = 3,
-	CH_WIDTH_80P80MHZ = 4,
-	CH_WIDTH_MAX
-};
-
 /**
  * enum offset_t: channel offset
  * @BW20: 20 mhz channel
@@ -549,7 +532,7 @@ struct country_code_to_reg_dmn {
  * @center_freq_seg1: center freq for segment 1
  */
 struct ch_params_s {
-	enum ch_width ch_width;
+	enum phy_ch_width ch_width;
 	uint8_t sec_ch_offset;
 	uint8_t center_freq_seg0;
 	uint8_t center_freq_seg1;

+ 15 - 17
core/cds/src/cds_reg_service.c

@@ -209,7 +209,7 @@ enum channel_state cds_get_channel_state(uint32_t chan_num)
  * Return: channel state
  */
 enum channel_state cds_get_bonded_channel_state(uint32_t chan_num,
-					   enum channel_width ch_width)
+					   enum phy_ch_width ch_width)
 {
 	enum channel_enum chan_enum;
 	bool bw_enabled = false;
@@ -219,21 +219,21 @@ enum channel_state cds_get_bonded_channel_state(uint32_t chan_num,
 		return CHANNEL_STATE_INVALID;
 
 	if (reg_channels[chan_enum].state) {
-		if (CHAN_WIDTH_5MHZ == ch_width)
+		if (CH_WIDTH_5MHZ == ch_width)
 			bw_enabled = 1;
-		else if (CHAN_WIDTH_10MHZ == ch_width)
+		else if (CH_WIDTH_10MHZ == ch_width)
 			bw_enabled = !(reg_channels[chan_enum].flags &
 				       IEEE80211_CHAN_NO_10MHZ);
-		else if (CHAN_WIDTH_20MHZ == ch_width)
+		else if (CH_WIDTH_20MHZ == ch_width)
 			bw_enabled = !(reg_channels[chan_enum].flags &
 				       IEEE80211_CHAN_NO_20MHZ);
-		else if (CHAN_WIDTH_40MHZ == ch_width)
+		else if (CH_WIDTH_40MHZ == ch_width)
 			bw_enabled = !(reg_channels[chan_enum].flags &
 				       IEEE80211_CHAN_NO_HT40);
-		else if (CHAN_WIDTH_80MHZ == ch_width)
+		else if (CH_WIDTH_80MHZ == ch_width)
 			bw_enabled = !(reg_channels[chan_enum].flags &
 				       IEEE80211_CHAN_NO_80MHZ);
-		else if (CHAN_WIDTH_160MHZ == ch_width)
+		else if (CH_WIDTH_160MHZ == ch_width)
 			bw_enabled = !(reg_channels[chan_enum].flags &
 				       IEEE80211_CHAN_NO_160MHZ);
 	}
@@ -250,10 +250,10 @@ enum channel_state cds_get_bonded_channel_state(uint32_t chan_num,
  *
  * Return: channel_width
  */
-enum channel_width cds_get_max_channel_bw(uint32_t chan_num)
+enum phy_ch_width cds_get_max_channel_bw(uint32_t chan_num)
 {
 	enum channel_enum chan_enum;
-	enum channel_width chan_bw = CHAN_WIDTH_0MHZ;
+	enum phy_ch_width chan_bw = CH_WIDTH_INVALID;
 
 	chan_enum = cds_get_channel_enum(chan_num);
 
@@ -262,25 +262,23 @@ enum channel_width cds_get_max_channel_bw(uint32_t chan_num)
 
 		if (!(reg_channels[chan_enum].flags &
 		      IEEE80211_CHAN_NO_160MHZ))
-			chan_bw = CHAN_WIDTH_160MHZ;
+			chan_bw = CH_WIDTH_160MHZ;
 		else if (!(reg_channels[chan_enum].flags &
 			   IEEE80211_CHAN_NO_80MHZ))
-			chan_bw = CHAN_WIDTH_80MHZ;
+			chan_bw = CH_WIDTH_80MHZ;
 		else if (!(reg_channels[chan_enum].flags &
 			   IEEE80211_CHAN_NO_HT40))
-			chan_bw = CHAN_WIDTH_40MHZ;
+			chan_bw = CH_WIDTH_40MHZ;
 		else if (!(reg_channels[chan_enum].flags &
 			   IEEE80211_CHAN_NO_20MHZ))
-			chan_bw = CHAN_WIDTH_20MHZ;
+			chan_bw = CH_WIDTH_20MHZ;
 		else if (!(reg_channels[chan_enum].flags &
 			   IEEE80211_CHAN_NO_10MHZ))
-			chan_bw = CHAN_WIDTH_10MHZ;
+			chan_bw = CH_WIDTH_10MHZ;
 		else
-			chan_bw = CHAN_WIDTH_5MHZ;
+			chan_bw = CH_WIDTH_5MHZ;
 	}
-
 	return chan_bw;
-
 }
 
 /**

+ 2 - 2
core/hdd/inc/wlan_hdd_main.h

@@ -1394,7 +1394,7 @@ struct hdd_context_s {
    -------------------------------------------------------------------------*/
 int hdd_validate_channel_and_bandwidth(hdd_adapter_t *adapter,
 				uint32_t chan_number,
-				enum ch_width chan_bw);
+				enum phy_ch_width chan_bw);
 #ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
 void wlan_hdd_check_sta_ap_concurrent_ch_intf(void *sta_pAdapter);
 #endif
@@ -1606,7 +1606,7 @@ const char *hdd_get_fwpath(void);
 void hdd_indicate_mgmt_frame(tSirSmeMgmtFrameInd *frame_ind);
 hdd_adapter_t *hdd_get_adapter_by_sme_session_id(hdd_context_t *hdd_ctx,
 						uint32_t sme_session_id);
-enum ch_width hdd_map_nl_chan_width(enum nl80211_chan_width ch_width);
+enum phy_ch_width hdd_map_nl_chan_width(enum nl80211_chan_width ch_width);
 uint8_t wlan_hdd_find_opclass(tHalHandle hal, uint8_t channel,
 			uint8_t bw_offset);
 void hdd_update_config(hdd_context_t *hdd_ctx);

+ 1 - 1
core/hdd/src/wlan_hdd_cfg80211.c

@@ -11274,7 +11274,7 @@ static int __wlan_hdd_cfg80211_channel_switch(struct wiphy *wiphy,
 	uint8_t channel;
 	uint16_t freq;
 	int ret;
-	enum ch_width ch_width;
+	enum phy_ch_width ch_width;
 
 	hddLog(LOG1, FL("Set Freq %d"),
 		  csa_params->chandef.chan->center_freq);

+ 1 - 1
core/hdd/src/wlan_hdd_hostapd.c

@@ -2005,7 +2005,7 @@ int hdd_softap_unpack_ie(tHalHandle halHandle,
  * Return: 0 for success, non zero for failure
  */
 int hdd_softap_set_channel_change(struct net_device *dev, int target_channel,
-				 enum ch_width target_bw)
+				 enum phy_ch_width target_bw)
 {
 	QDF_STATUS status;
 	int ret = 0;

+ 2 - 2
core/hdd/src/wlan_hdd_hostapd.h

@@ -60,8 +60,8 @@ eCsrAuthType
 hdd_translate_rsn_to_csr_auth_type(uint8_t auth_suite[4]);
 
 int hdd_softap_set_channel_change(struct net_device *dev,
-				  int target_channel,
-				  enum ch_width target_bw);
+					int target_channel,
+					enum phy_ch_width target_bw);
 
 #ifdef FEATURE_WLAN_MCC_TO_SCC_SWITCH
 void hdd_sap_restart_with_channel_switch(hdd_adapter_t *adapter,

+ 1 - 1
core/hdd/src/wlan_hdd_ioctl.c

@@ -7432,7 +7432,7 @@ static int drv_cmd_set_channel_switch(hdd_adapter_t *adapter,
 	int status;
 	uint32_t chan_number = 0, chan_bw = 0;
 	uint8_t *value = command;
-	enum ch_width width;
+	enum phy_ch_width width;
 
 	if ((adapter->device_mode != QDF_P2P_GO_MODE) &&
 		(adapter->device_mode != QDF_SAP_MODE)) {

+ 5 - 3
core/hdd/src/wlan_hdd_main.c

@@ -246,7 +246,7 @@ const char *hdd_device_mode_to_string(uint8_t device_mode)
  */
 int hdd_validate_channel_and_bandwidth(hdd_adapter_t *adapter,
 		uint32_t chan_number,
-		enum ch_width chan_bw)
+		enum phy_ch_width chan_bw)
 {
 	uint8_t chan[WNI_CFG_VALID_CHANNEL_LIST_LEN];
 	uint32_t len = WNI_CFG_VALID_CHANNEL_LIST_LEN, i;
@@ -433,7 +433,7 @@ static int curr_con_mode;
  * Return: Converted channel width. In case of non matching NL channel width,
  * CH_WIDTH_MAX will be returned.
  */
-enum ch_width hdd_map_nl_chan_width(enum nl80211_chan_width ch_width)
+enum phy_ch_width hdd_map_nl_chan_width(enum nl80211_chan_width ch_width)
 {
 	switch (ch_width) {
 	case NL80211_CHAN_WIDTH_20_NOHT:
@@ -449,11 +449,13 @@ enum ch_width hdd_map_nl_chan_width(enum nl80211_chan_width ch_width)
 	case NL80211_CHAN_WIDTH_160:
 		return CH_WIDTH_160MHZ;
 	case NL80211_CHAN_WIDTH_5:
+		return CH_WIDTH_5MHZ;
 	case NL80211_CHAN_WIDTH_10:
+		return CH_WIDTH_10MHZ;
 	default:
 		hdd_err("Invalid channel width %d, setting to default",
 				ch_width);
-		return CH_WIDTH_MAX;
+		return CH_WIDTH_INVALID;
 	}
 }
 

+ 1 - 1
core/mac/inc/sir_api.h

@@ -3866,7 +3866,7 @@ typedef struct sSirChanChangeRequest {
 	uint16_t messageLen;
 	uint8_t targetChannel;
 	uint8_t sec_ch_offset;
-	enum ch_width ch_width;
+	enum phy_ch_width ch_width;
 	uint8_t center_freq_seg_0;
 	uint8_t center_freq_seg_1;
 	uint8_t bssid[QDF_MAC_ADDR_SIZE];

+ 1 - 1
core/mac/src/pe/include/lim_global.h

@@ -502,7 +502,7 @@ typedef struct sLimChannelSwitchInfo {
 	uint8_t ch_center_freq_seg0;
 	uint8_t ch_center_freq_seg1;
 	uint8_t sec_ch_offset;
-	enum ch_width ch_width;
+	enum phy_ch_width ch_width;
 	int8_t switchCount;
 	uint32_t switchTimeoutValue;
 	uint8_t switchMode;

+ 1 - 1
core/mac/src/pe/include/lim_session.h

@@ -313,7 +313,7 @@ typedef struct sPESession       /* Added to Support BT-AMP */
 	tLimOperatingModeInfo gLimOperatingMode;
 	uint8_t vhtCapabilityPresentInBeacon;
 	uint8_t ch_center_freq_seg0;
-	enum ch_width ch_width;
+	enum phy_ch_width ch_width;
 	uint8_t ch_center_freq_seg1;
 	uint8_t txBFIniFeatureEnabled;
 	uint8_t txbf_csn_value;

+ 1 - 1
core/mac/src/pe/lim/lim_process_mlm_req_messages.c

@@ -2978,7 +2978,7 @@ void lim_complete_mlm_scan(tpAniSirGlobal mac_ctx, tSirResultCodes ret_code)
  */
 void lim_set_channel(tpAniSirGlobal mac_ctx, uint8_t channel,
 		     uint8_t ch_center_freq_seg0, uint8_t ch_center_freq_seg1,
-		     enum ch_width ch_width, int8_t max_tx_power,
+		     enum phy_ch_width ch_width, int8_t max_tx_power,
 		     uint8_t pe_session_id)
 {
 	tpPESession pe_session;

+ 1 - 1
core/mac/src/pe/lim/lim_send_messages.c

@@ -206,7 +206,7 @@ tSirRetStatus lim_send_switch_chnl_params(tpAniSirGlobal pMac,
 					  uint8_t chnlNumber,
 					  uint8_t ch_center_freq_seg0,
 					  uint8_t ch_center_freq_seg1,
-					  enum ch_width ch_width,
+					  enum phy_ch_width ch_width,
 					  int8_t maxTxPower,
 					  uint8_t peSessionId,
 					  uint8_t is_restart)

+ 1 - 1
core/mac/src/pe/lim/lim_send_messages.h

@@ -67,7 +67,7 @@ tSirRetStatus lim_send_switch_chnl_params(tpAniSirGlobal pMac,
 					  uint8_t chnlNumber,
 					  uint8_t ch_center_freq_seg0,
 					  uint8_t ch_center_freq_seg1,
-					  enum ch_width ch_width,
+					  enum phy_ch_width ch_width,
 					  int8_t maxTxPower,
 					  uint8_t peSessionId,
 					  uint8_t is_restart);

+ 1 - 1
core/mac/src/pe/lim/lim_send_sme_rsp_messages.c

@@ -2398,7 +2398,7 @@ lim_send_sme_ap_channel_switch_resp(tpAniSirGlobal pMac,
 	tpSwitchChannelParams pSmeSwithChnlParams;
 	uint8_t channelId;
 	bool is_ch_dfs = false;
-	enum ch_width ch_width;
+	enum phy_ch_width ch_width;
 	uint8_t ch_center_freq_seg1;
 
 	pSmeSwithChnlParams = (tSwitchChannelParams *)

+ 1 - 1
core/mac/src/pe/lim/lim_types.h

@@ -552,7 +552,7 @@ uint32_t lim_defer_msg(tpAniSirGlobal, tSirMsgQ *);
 /* / Function that Switches the Channel and sets the CB Mode */
 void lim_set_channel(tpAniSirGlobal pMac, uint8_t channel,
 		uint8_t ch_center_freq_seg0, uint8_t ch_center_freq_seg1,
-		enum ch_width ch_width, int8_t maxTxPower,
+		enum phy_ch_width ch_width, int8_t maxTxPower,
 		uint8_t peSessionId);
 
 

+ 1 - 1
core/mac/src/pe/lim/lim_utils.c

@@ -2725,7 +2725,7 @@ void lim_switch_primary_secondary_channel(tpAniSirGlobal pMac,
 					uint8_t newChannel,
 					uint8_t ch_center_freq_seg0,
 					uint8_t ch_center_freq_seg1,
-					enum ch_width ch_width)
+					enum phy_ch_width ch_width)
 {
 	uint8_t subband = 0;
 

+ 1 - 1
core/mac/src/pe/lim/lim_utils.h

@@ -219,7 +219,7 @@ void lim_switch_primary_secondary_channel(tpAniSirGlobal pMac,
 					uint8_t newChannel,
 					uint8_t ch_center_freq_seg0,
 					uint8_t ch_center_freq_seg1,
-					enum ch_width ch_width);
+					enum phy_ch_width ch_width);
 void limUpdateStaRunTimeHTSwtichChnlParams(tpAniSirGlobal pMac,
 		tDot11fIEHTInfo *pRcvdHTInfo,
 		uint8_t bssIdx);

+ 5 - 4
core/sap/inc/sap_api.h

@@ -621,8 +621,8 @@ typedef struct sSapDfsInfo {
 	 * New channel width and new channel bonding mode
 	 * will only be updated via channel fallback mechanism
 	 */
-	enum ch_width orig_chanWidth;
-	enum ch_width new_chanWidth;
+	enum phy_ch_width orig_chanWidth;
+	enum phy_ch_width new_chanWidth;
 	struct ch_params_s new_ch_params;
 
 	/*
@@ -828,8 +828,9 @@ QDF_STATUS wlansap_disassoc_sta(void *p_cds_gctx,
 QDF_STATUS wlansap_deauth_sta(void *p_cds_gctx,
 			struct tagCsrDelStaParams *pDelStaParams);
 QDF_STATUS wlansap_set_channel_change_with_csa(void *p_cds_gctx,
-			uint32_t targetChannel, enum ch_width target_bw);
-QDF_STATUS wlansap_set_key_sta(void *p_cds_gctx, tCsrRoamSetKey *pSetKeyInfo);
+			uint32_t targetChannel, enum phy_ch_width target_bw);
+QDF_STATUS wlansap_set_key_sta(void *p_cds_gctx,
+	tCsrRoamSetKey *pSetKeyInfo);
 QDF_STATUS wlansap_get_assoc_stations(void *p_cds_gctx,
 	 QDF_MODULE_ID module, tpSap_AssocMacAddr pAssocStas);
 QDF_STATUS wlansap_remove_wps_session_overlap(void *p_cds_gctx,

+ 4 - 4
core/sap/src/sap_fsm.c

@@ -890,7 +890,7 @@ static inline void sap_event_init(ptWLAN_SAPEvent sapEvent)
  */
 bool
 sap_find_target_channel_in_channel_matrix(ptSapContext sapContext,
-					  enum ch_width ch_width,
+					  enum phy_ch_width ch_width,
 					  uint8_t NOL_channel,
 					  tSapTxLeakInfo **pTarget_chnl_mtrx)
 {
@@ -955,7 +955,7 @@ sap_find_target_channel_in_channel_matrix(ptSapContext sapContext,
 
 QDF_STATUS
 sap_mark_channels_leaking_into_nol(ptSapContext sap_ctx,
-		enum ch_width ch_width,
+		enum phy_ch_width ch_width,
 		tSapDfsNolInfo *nol,
 		uint8_t temp_ch_lst_sz,
 		uint8_t *temp_ch_lst)
@@ -1069,7 +1069,7 @@ static void sap_set_bitmap(chan_bonding_bitmap *pBitmap, uint8_t channel)
  * Return: number of channels found
  */
 static uint8_t sap_populate_available_channels(chan_bonding_bitmap *bitmap,
-		enum ch_width ch_width,
+		enum phy_ch_width ch_width,
 		uint8_t *avail_chnl)
 {
 	uint8_t i = 0;
@@ -1248,7 +1248,7 @@ static uint8_t sap_random_channel_sel(ptSapContext sapContext)
 	uint8_t channelID;
 	tHalHandle hHal = CDS_GET_HAL_CB(sapContext->p_cds_gctx);
 	tpAniSirGlobal pMac;
-	enum ch_width ch_width;
+	enum phy_ch_width ch_width;
 	uint8_t   *tmp_ch_lst = NULL;
 	uint8_t   dfs_region;
 

+ 1 - 1
core/sap/src/sap_module.c

@@ -1470,7 +1470,7 @@ static QDF_STATUS wlansap_update_csa_channel_params(ptSapContext sap_context,
  */
 QDF_STATUS
 wlansap_set_channel_change_with_csa(void *p_cds_gctx, uint32_t targetChannel,
-				    enum ch_width target_bw)
+					enum phy_ch_width target_bw)
 {
 
 	ptSapContext sapContext = NULL;

+ 1 - 1
core/wma/inc/wma.h

@@ -1483,7 +1483,7 @@ struct wma_vdev_start_req {
 	uint32_t beacon_intval;
 	uint32_t dtim_period;
 	int32_t max_txpow;
-	enum ch_width chan_width;
+	enum phy_ch_width chan_width;
 	bool is_dfs;
 	uint8_t vdev_id;
 	uint8_t chan;

+ 2 - 2
core/wma/inc/wma_if.h

@@ -499,7 +499,7 @@ typedef struct {
 	uint8_t halPersona;
 	uint8_t bSpectrumMgtEnabled;
 	uint8_t vhtCapable;
-	enum ch_width ch_width;
+	enum phy_ch_width ch_width;
 	uint8_t ch_center_freq_seg0;
 	uint8_t ch_center_freq_seg1;
 	uint8_t reassocReq;     /* Set only during roaming reassociation */
@@ -910,7 +910,7 @@ typedef struct {
 	uint16_t smpsMode;
 	uint8_t isDfsChannel;
 	uint8_t vhtCapable;
-	enum ch_width ch_width;
+	enum phy_ch_width ch_width;
 	uint8_t ch_center_freq_seg0;
 	uint8_t ch_center_freq_seg1;
 	uint8_t dot11_mode;

+ 1 - 1
core/wma/inc/wma_internal.h

@@ -899,7 +899,7 @@ QDF_STATUS wma_process_lphb_conf_req(tp_wma_handle wma_handle,
 QDF_STATUS wma_process_dhcp_ind(tp_wma_handle wma_handle,
 				tAniDHCPInd *ta_dhcp_ind);
 
-WLAN_PHY_MODE wma_chan_to_mode(u8 chan, enum ch_width chan_width,
+WLAN_PHY_MODE wma_chan_to_mode(u8 chan, enum phy_ch_width chan_width,
 				      u8 vht_capable, u8 dot11_mode);
 
 QDF_STATUS wma_get_link_speed(WMA_HANDLE handle, tSirLinkSpeedInfo *pLinkSpeed);

+ 1 - 1
core/wma/src/wma_features.c

@@ -677,7 +677,7 @@ QDF_STATUS wma_process_dhcp_ind(tp_wma_handle wma_handle,
  *
  * Return: return phy mode
  */
-WLAN_PHY_MODE wma_chan_to_mode(u8 chan, enum ch_width chan_width,
+WLAN_PHY_MODE wma_chan_to_mode(u8 chan, enum phy_ch_width chan_width,
 				      u8 vht_capable, u8 dot11_mode)
 {
 	WLAN_PHY_MODE phymode = MODE_UNKNOWN;

+ 0 - 11
target/inc/wmi_unified.h

@@ -4235,17 +4235,6 @@ typedef enum {
 	WMI_MESH_STATS = 6,
 } wmi_link_iface_type;
 
-/* channel operating width */
-typedef enum {
-	WMI_CHAN_WIDTH_20 = 0,
-	WMI_CHAN_WIDTH_40 = 1,
-	WMI_CHAN_WIDTH_80 = 2,
-	WMI_CHAN_WIDTH_160 = 3,
-	WMI_CHAN_WIDTH_80P80 = 4,
-	WMI_CHAN_WIDTH_5 = 5,
-	WMI_CHAN_WIDTH_10 = 6,
-} wmi_channel_width;
-
 /*Clear stats*/
 typedef struct {
 	A_UINT32 tlv_header;