diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2009-04-13 12:26:38 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-04-22 16:54:46 -0400 |
commit | 822b0dfc135cf205379ea62aae7a5b393811b238 (patch) | |
tree | cf6b09320beadb9d7846272f0017ce1e798f8b30 /drivers/net/wireless/ath | |
parent | 9c07a7777f44c7e39accec5ad8c4293d6a9b2a47 (diff) |
ath9k: Remove unused channel flags
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h index 5c4127e6c1c6..7e37570608bc 100644 --- a/drivers/net/wireless/ath/ath9k/hw.h +++ b/drivers/net/wireless/ath/ath9k/hw.h | |||
@@ -266,13 +266,6 @@ enum ath9k_int { | |||
266 | #define CHANNEL_HT40PLUS 0x20000 | 266 | #define CHANNEL_HT40PLUS 0x20000 |
267 | #define CHANNEL_HT40MINUS 0x40000 | 267 | #define CHANNEL_HT40MINUS 0x40000 |
268 | 268 | ||
269 | #define CHANNEL_INTERFERENCE 0x01 | ||
270 | #define CHANNEL_DFS 0x02 | ||
271 | #define CHANNEL_4MS_LIMIT 0x04 | ||
272 | #define CHANNEL_DFS_CLEAR 0x08 | ||
273 | #define CHANNEL_DISALLOW_ADHOC 0x10 | ||
274 | #define CHANNEL_PER_11D_ADHOC 0x20 | ||
275 | |||
276 | #define CHANNEL_A (CHANNEL_5GHZ|CHANNEL_OFDM) | 269 | #define CHANNEL_A (CHANNEL_5GHZ|CHANNEL_OFDM) |
277 | #define CHANNEL_B (CHANNEL_2GHZ|CHANNEL_CCK) | 270 | #define CHANNEL_B (CHANNEL_2GHZ|CHANNEL_CCK) |
278 | #define CHANNEL_G (CHANNEL_2GHZ|CHANNEL_OFDM) | 271 | #define CHANNEL_G (CHANNEL_2GHZ|CHANNEL_OFDM) |
@@ -303,10 +296,6 @@ struct ath9k_channel { | |||
303 | int16_t rawNoiseFloor; | 296 | int16_t rawNoiseFloor; |
304 | }; | 297 | }; |
305 | 298 | ||
306 | #define IS_CHAN_A(_c) ((((_c)->channelFlags & CHANNEL_A) == CHANNEL_A) || \ | ||
307 | (((_c)->channelFlags & CHANNEL_A_HT20) == CHANNEL_A_HT20) || \ | ||
308 | (((_c)->channelFlags & CHANNEL_A_HT40PLUS) == CHANNEL_A_HT40PLUS) || \ | ||
309 | (((_c)->channelFlags & CHANNEL_A_HT40MINUS) == CHANNEL_A_HT40MINUS)) | ||
310 | #define IS_CHAN_G(_c) ((((_c)->channelFlags & (CHANNEL_G)) == CHANNEL_G) || \ | 299 | #define IS_CHAN_G(_c) ((((_c)->channelFlags & (CHANNEL_G)) == CHANNEL_G) || \ |
311 | (((_c)->channelFlags & CHANNEL_G_HT20) == CHANNEL_G_HT20) || \ | 300 | (((_c)->channelFlags & CHANNEL_G_HT20) == CHANNEL_G_HT20) || \ |
312 | (((_c)->channelFlags & CHANNEL_G_HT40PLUS) == CHANNEL_G_HT40PLUS) || \ | 301 | (((_c)->channelFlags & CHANNEL_G_HT40PLUS) == CHANNEL_G_HT40PLUS) || \ |
@@ -314,7 +303,6 @@ struct ath9k_channel { | |||
314 | #define IS_CHAN_OFDM(_c) (((_c)->channelFlags & CHANNEL_OFDM) != 0) | 303 | #define IS_CHAN_OFDM(_c) (((_c)->channelFlags & CHANNEL_OFDM) != 0) |
315 | #define IS_CHAN_5GHZ(_c) (((_c)->channelFlags & CHANNEL_5GHZ) != 0) | 304 | #define IS_CHAN_5GHZ(_c) (((_c)->channelFlags & CHANNEL_5GHZ) != 0) |
316 | #define IS_CHAN_2GHZ(_c) (((_c)->channelFlags & CHANNEL_2GHZ) != 0) | 305 | #define IS_CHAN_2GHZ(_c) (((_c)->channelFlags & CHANNEL_2GHZ) != 0) |
317 | #define IS_CHAN_PASSIVE(_c) (((_c)->channelFlags & CHANNEL_PASSIVE) != 0) | ||
318 | #define IS_CHAN_HALF_RATE(_c) (((_c)->channelFlags & CHANNEL_HALF) != 0) | 306 | #define IS_CHAN_HALF_RATE(_c) (((_c)->channelFlags & CHANNEL_HALF) != 0) |
319 | #define IS_CHAN_QUARTER_RATE(_c) (((_c)->channelFlags & CHANNEL_QUARTER) != 0) | 307 | #define IS_CHAN_QUARTER_RATE(_c) (((_c)->channelFlags & CHANNEL_QUARTER) != 0) |
320 | #define IS_CHAN_A_5MHZ_SPACED(_c) \ | 308 | #define IS_CHAN_A_5MHZ_SPACED(_c) \ |