diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-01-21 09:13:48 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:01:09 -0500 |
commit | 881d948c23442173a011f1adcfe4c95bf7f27515 (patch) | |
tree | 3d7e6a4bf23b960cf45a4d2c5734578168ce0424 /drivers/net/wireless/p54/p54.h | |
parent | 369391db1aabd089cefaadaabb6d9fc82e78b0a7 (diff) |
wireless: restrict to 32 legacy rates
Since the standards only define 12 legacy rates, 32 is certainly
a sane upper limit and we don't need to use u64 everywhere. Add
sanity checking that no more than 32 rates are registered and
change the variables to u32 throughout.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/p54/p54.h')
-rw-r--r-- | drivers/net/wireless/p54/p54.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/p54/p54.h b/drivers/net/wireless/p54/p54.h index 64492feca9b2..94c3acd1fcaf 100644 --- a/drivers/net/wireless/p54/p54.h +++ b/drivers/net/wireless/p54/p54.h | |||
@@ -144,7 +144,7 @@ struct p54_common { | |||
144 | unsigned int output_power; | 144 | unsigned int output_power; |
145 | u32 tsf_low32; | 145 | u32 tsf_low32; |
146 | u32 tsf_high32; | 146 | u32 tsf_high32; |
147 | u64 basic_rate_mask; | 147 | u32 basic_rate_mask; |
148 | u16 wakeup_timer; | 148 | u16 wakeup_timer; |
149 | u16 aid; | 149 | u16 aid; |
150 | struct ieee80211_tx_queue_stats tx_stats[8]; | 150 | struct ieee80211_tx_queue_stats tx_stats[8]; |