diff options
author | Bruno Randolf <br1@einfach.org> | 2011-01-20 22:19:52 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-01-21 16:21:42 -0500 |
commit | 2b1351a30705925ed06b41ec98a6fbaad4ba4d6f (patch) | |
tree | 8e873044d45bdfd399f5a0b0c0a509d3eebf95d4 /drivers/net/wireless/ath/ath5k/base.c | |
parent | d7e86c3219a1287dd1350a590ee79c8753ff2420 (diff) |
ath5k: Simplify loop when setting up channels
Simplify confusing code and get rid of an unnecessary variable.
Signed-off-by: Bruno Randolf <br1@einfach.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/base.c')
-rw-r--r-- | drivers/net/wireless/ath/ath5k/base.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c index 217c2a09d979..76a4e55265c3 100644 --- a/drivers/net/wireless/ath/ath5k/base.c +++ b/drivers/net/wireless/ath/ath5k/base.c | |||
@@ -267,7 +267,7 @@ ath5k_setup_channels(struct ath5k_hw *ah, | |||
267 | unsigned int mode, | 267 | unsigned int mode, |
268 | unsigned int max) | 268 | unsigned int max) |
269 | { | 269 | { |
270 | unsigned int i, count, size, chfreq, freq, ch; | 270 | unsigned int count, size, chfreq, freq, ch; |
271 | enum ieee80211_band band; | 271 | enum ieee80211_band band; |
272 | 272 | ||
273 | if (!test_bit(mode, ah->ah_modes)) | 273 | if (!test_bit(mode, ah->ah_modes)) |
@@ -291,8 +291,8 @@ ath5k_setup_channels(struct ath5k_hw *ah, | |||
291 | return 0; | 291 | return 0; |
292 | } | 292 | } |
293 | 293 | ||
294 | for (i = 0, count = 0; i < size && max > 0; i++) { | 294 | count = 0; |
295 | ch = i + 1 ; | 295 | for (ch = 1; ch <= size && count < max; ch++) { |
296 | freq = ieee80211_channel_to_frequency(ch, band); | 296 | freq = ieee80211_channel_to_frequency(ch, band); |
297 | 297 | ||
298 | if (freq == 0) /* mapping failed - not a standard channel */ | 298 | if (freq == 0) /* mapping failed - not a standard channel */ |
@@ -319,7 +319,6 @@ ath5k_setup_channels(struct ath5k_hw *ah, | |||
319 | } | 319 | } |
320 | 320 | ||
321 | count++; | 321 | count++; |
322 | max--; | ||
323 | } | 322 | } |
324 | 323 | ||
325 | return count; | 324 | return count; |