diff options
author | Christian Lamparter <chunkeey@web.de> | 2008-09-05 20:56:23 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-09-11 15:53:32 -0400 |
commit | cc6de669f648bc8820f1cf93ee311eb4eaab9fc5 (patch) | |
tree | 574b6b0b848ae045cfcae6fc8cab6c29a5c30812 /drivers/net/wireless/p54/p54.h | |
parent | 78d57eb2b666617dd75aac0f1a420238004a98b3 (diff) |
p54: add lots of useful rx/tx statistics
The firmware can provide lots of useful statistics about noise floor,
mac time and lots of numbers about successful transfers and dropped
frames.
Signed-off-by: Christian Lamparter <chunkeey@web.de>
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 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/p54/p54.h b/drivers/net/wireless/p54/p54.h index ea72b65428ec..370202f6de2c 100644 --- a/drivers/net/wireless/p54/p54.h +++ b/drivers/net/wireless/p54/p54.h | |||
@@ -91,6 +91,11 @@ struct p54_common { | |||
91 | u32 tsf_low32; | 91 | u32 tsf_low32; |
92 | u32 tsf_high32; | 92 | u32 tsf_high32; |
93 | struct ieee80211_tx_queue_stats tx_stats[8]; | 93 | struct ieee80211_tx_queue_stats tx_stats[8]; |
94 | struct ieee80211_low_level_stats stats; | ||
95 | struct timer_list stats_timer; | ||
96 | struct completion stats_comp; | ||
97 | void *cached_stats; | ||
98 | int noise; | ||
94 | void *eeprom; | 99 | void *eeprom; |
95 | struct completion eeprom_comp; | 100 | struct completion eeprom_comp; |
96 | }; | 101 | }; |