diff options
-rw-r--r-- | drivers/net/wireless/ath/ath5k/base.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c index 76a4e55265c..8611f24cdf6 100644 --- a/drivers/net/wireless/ath/ath5k/base.c +++ b/drivers/net/wireless/ath/ath5k/base.c | |||
@@ -262,21 +262,16 @@ static bool ath5k_is_standard_channel(short chan, enum ieee80211_band band) | |||
262 | } | 262 | } |
263 | 263 | ||
264 | static unsigned int | 264 | static unsigned int |
265 | ath5k_setup_channels(struct ath5k_hw *ah, | 265 | ath5k_setup_channels(struct ath5k_hw *ah, struct ieee80211_channel *channels, |
266 | struct ieee80211_channel *channels, | 266 | unsigned int mode, unsigned int max) |
267 | unsigned int mode, | ||
268 | unsigned int max) | ||
269 | { | 267 | { |
270 | unsigned int count, size, chfreq, freq, ch; | 268 | unsigned int count, size, chfreq, freq, ch; |
271 | enum ieee80211_band band; | 269 | enum ieee80211_band band; |
272 | 270 | ||
273 | if (!test_bit(mode, ah->ah_modes)) | ||
274 | return 0; | ||
275 | |||
276 | switch (mode) { | 271 | switch (mode) { |
277 | case AR5K_MODE_11A: | 272 | case AR5K_MODE_11A: |
278 | /* 1..220, but 2GHz frequencies are filtered by check_channel */ | 273 | /* 1..220, but 2GHz frequencies are filtered by check_channel */ |
279 | size = 220 ; | 274 | size = 220; |
280 | chfreq = CHANNEL_5GHZ; | 275 | chfreq = CHANNEL_5GHZ; |
281 | band = IEEE80211_BAND_5GHZ; | 276 | band = IEEE80211_BAND_5GHZ; |
282 | break; | 277 | break; |