diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2008-08-07 01:24:57 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-07 09:49:44 -0400 |
commit | 86b89eed9aca2a4a335b9c1bf7380f9183db431f (patch) | |
tree | de9861a36de404fc74d8d7fbb87bd66e73891de4 /drivers/net/wireless/ath9k/rc.h | |
parent | 3b95978ddadbab594aad6280bfa660a49948af86 (diff) |
ath9k: Revamp wireless mode usage
Use a single enum for managing modes, store supported modes by
the HW in a bitmask.
Register legacy rates with mac80211 only at init.
Signed-off-by: Sujith Manoharan <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/rc.h')
-rw-r--r-- | drivers/net/wireless/ath9k/rc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath9k/rc.h b/drivers/net/wireless/ath9k/rc.h index 8f6c28e65191..71aef9c75232 100644 --- a/drivers/net/wireless/ath9k/rc.h +++ b/drivers/net/wireless/ath9k/rc.h | |||
@@ -247,7 +247,7 @@ struct ath_rateset { | |||
247 | /* per-device state */ | 247 | /* per-device state */ |
248 | struct ath_rate_softc { | 248 | struct ath_rate_softc { |
249 | /* phy tables that contain rate control data */ | 249 | /* phy tables that contain rate control data */ |
250 | const void *hw_rate_table[WIRELESS_MODE_MAX]; | 250 | const void *hw_rate_table[ATH9K_MODE_MAX]; |
251 | int fixedrix; /* -1 or index of fixed rate */ | 251 | int fixedrix; /* -1 or index of fixed rate */ |
252 | }; | 252 | }; |
253 | 253 | ||