diff options
author | Mohammed Shafi Shajakhan <mshajakhan@atheros.com> | 2011-03-24 14:36:16 +0530 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-04-04 16:18:33 -0400 |
commit | b64c6a3d1ab1bab9396e6efd2fd03479be4d0a63 (patch) | |
tree | c3eec5dd78375e73b505a63aac7f34e8bc083720 /drivers/net/wireless/ath/ath9k/common.c | |
parent | 279daf64c01e391379060a6d30e9827cc0c56612 (diff) | |
download | lwn-b64c6a3d1ab1bab9396e6efd2fd03479be4d0a63.tar.gz lwn-b64c6a3d1ab1bab9396e6efd2fd03479be4d0a63.zip |
ath9k: cleanup few redundant macros
Signed-off-by: Mohammed Shafi Shajakhan <mshajakhan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/common.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/common.c b/drivers/net/wireless/ath/ath9k/common.c index 615e68276e72..16ba8c67fbd5 100644 --- a/drivers/net/wireless/ath/ath9k/common.c +++ b/drivers/net/wireless/ath/ath9k/common.c @@ -116,7 +116,7 @@ void ath9k_cmn_update_ichannel(struct ath9k_channel *ichan, if (chan->band == IEEE80211_BAND_2GHZ) { ichan->chanmode = CHANNEL_G; - ichan->channelFlags = CHANNEL_2GHZ | CHANNEL_OFDM | CHANNEL_G; + ichan->channelFlags = CHANNEL_2GHZ | CHANNEL_OFDM; } else { ichan->chanmode = CHANNEL_A; ichan->channelFlags = CHANNEL_5GHZ | CHANNEL_OFDM; |