]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
ath5k: Simplify loop when setting up channels
authorBruno Randolf <br1@einfach.org>
Fri, 21 Jan 2011 03:19:52 +0000 (12:19 +0900)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 21 Jan 2011 21:21:42 +0000 (16:21 -0500)
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>
drivers/net/wireless/ath/ath5k/base.c

index 217c2a09d97967a1fa02e83cee99ad3c1fa0fd39..76a4e55265c3d6f96690f11c00cc5145848c7e61 100644 (file)
@@ -267,7 +267,7 @@ ath5k_setup_channels(struct ath5k_hw *ah,
                unsigned int mode,
                unsigned int max)
 {
-       unsigned int i, count, size, chfreq, freq, ch;
+       unsigned int count, size, chfreq, freq, ch;
        enum ieee80211_band band;
 
        if (!test_bit(mode, ah->ah_modes))
@@ -291,8 +291,8 @@ ath5k_setup_channels(struct ath5k_hw *ah,
                return 0;
        }
 
-       for (i = 0, count = 0; i < size && max > 0; i++) {
-               ch = i + 1 ;
+       count = 0;
+       for (ch = 1; ch <= size && count < max; ch++) {
                freq = ieee80211_channel_to_frequency(ch, band);
 
                if (freq == 0) /* mapping failed - not a standard channel */
@@ -319,7 +319,6 @@ ath5k_setup_channels(struct ath5k_hw *ah,
                }
 
                count++;
-               max--;
        }
 
        return count;