diff options
author | Christian Lamparter <chunkeey@web.de> | 2008-09-06 02:56:23 +0200 |
---|---|---|
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) | |
download | talos-obmc-linux-cc6de669f648bc8820f1cf93ee311eb4eaab9fc5.tar.gz talos-obmc-linux-cc6de669f648bc8820f1cf93ee311eb4eaab9fc5.zip |
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 { u32 tsf_low32; u32 tsf_high32; struct ieee80211_tx_queue_stats tx_stats[8]; + struct ieee80211_low_level_stats stats; + struct timer_list stats_timer; + struct completion stats_comp; + void *cached_stats; + int noise; void *eeprom; struct completion eeprom_comp; }; |