diff options
author | Johannes Berg <johannes.berg@intel.com> | 2016-04-12 09:56:15 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2016-04-12 09:56:15 -0400 |
commit | 57fbcce37be7c1d2622b56587c10ade00e96afa3 (patch) | |
tree | 0f9bee1250af3046fa46049736b615b81e60f56e /drivers/net/wireless/intel/iwlwifi/dvm/lib.c | |
parent | 35eb8f7b1a37013d7a38466ae58c39fbd2c57faa (diff) |
cfg80211: remove enum ieee80211_band
This enum is already perfectly aliased to enum nl80211_band, and
the only reason for it is that we get IEEE80211_NUM_BANDS out of
it. There's no really good reason to not declare the number of
bands in nl80211 though, so do that and remove the cfg80211 one.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/dvm/lib.c')
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/dvm/lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/dvm/lib.c b/drivers/net/wireless/intel/iwlwifi/dvm/lib.c index 1799469268ea..8dda52ae3bb5 100644 --- a/drivers/net/wireless/intel/iwlwifi/dvm/lib.c +++ b/drivers/net/wireless/intel/iwlwifi/dvm/lib.c | |||
@@ -94,7 +94,7 @@ void iwlagn_temperature(struct iwl_priv *priv) | |||
94 | iwl_tt_handler(priv); | 94 | iwl_tt_handler(priv); |
95 | } | 95 | } |
96 | 96 | ||
97 | int iwlagn_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band) | 97 | int iwlagn_hwrate_to_mac80211_idx(u32 rate_n_flags, enum nl80211_band band) |
98 | { | 98 | { |
99 | int idx = 0; | 99 | int idx = 0; |
100 | int band_offset = 0; | 100 | int band_offset = 0; |
@@ -105,7 +105,7 @@ int iwlagn_hwrate_to_mac80211_idx(u32 rate_n_flags, enum ieee80211_band band) | |||
105 | return idx; | 105 | return idx; |
106 | /* Legacy rate format, search for match in table */ | 106 | /* Legacy rate format, search for match in table */ |
107 | } else { | 107 | } else { |
108 | if (band == IEEE80211_BAND_5GHZ) | 108 | if (band == NL80211_BAND_5GHZ) |
109 | band_offset = IWL_FIRST_OFDM_RATE; | 109 | band_offset = IWL_FIRST_OFDM_RATE; |
110 | for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++) | 110 | for (idx = band_offset; idx < IWL_RATE_COUNT_LEGACY; idx++) |
111 | if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF)) | 111 | if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF)) |
@@ -878,7 +878,7 @@ u8 iwl_toggle_tx_ant(struct iwl_priv *priv, u8 ant, u8 valid) | |||
878 | int i; | 878 | int i; |
879 | u8 ind = ant; | 879 | u8 ind = ant; |
880 | 880 | ||
881 | if (priv->band == IEEE80211_BAND_2GHZ && | 881 | if (priv->band == NL80211_BAND_2GHZ && |
882 | priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) | 882 | priv->bt_traffic_load >= IWL_BT_COEX_TRAFFIC_LOAD_HIGH) |
883 | return 0; | 883 | return 0; |
884 | 884 | ||