]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
ath9k: Properly initialize channel table for 2GHz
authorMohammed Shafi Shajakhan <mshajakhan@atheros.com>
Fri, 17 Dec 2010 15:14:36 +0000 (20:44 +0530)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 20 Dec 2010 19:49:48 +0000 (14:49 -0500)
ath9k channel table for 2Ghz does not seems to initialize the 'band'
parameter.Though it does not seems to cause any visible issue it looks
odd when we initialize the 'band' parameter for 5Ghz channel table while
not so for 2Ghz.

Signed-off-by: Mohammed Shafi Shajakhan <mshajakhan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/init.c

index 12387950b449bbd53162d5e9bebdb0daabb0d5c9..b0e5e716b167f68c765f04f26bd9a02f67308f04 100644 (file)
@@ -48,6 +48,7 @@ MODULE_PARM_DESC(pmqos, "User specified PM-QOS value");
 /* We use the hw_value as an index into our private channel structure */
 
 #define CHAN2G(_freq, _idx)  { \
+       .band = IEEE80211_BAND_2GHZ, \
        .center_freq = (_freq), \
        .hw_value = (_idx), \
        .max_power = 20, \