diff options
author | Vasanthakumar Thiagarajan <vasanth@atheros.com> | 2010-04-15 17:39:27 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-04-16 15:43:44 -0400 |
commit | 744d402580f959072f6b805a98745837f185c8e0 (patch) | |
tree | 660ea24e3a9d7326d63c249f02a10a7e047be1cf /drivers/net/wireless/ath/ath9k/hw.h | |
parent | cc610ac0557b0ad0dcffdff1230cef28a970d755 (diff) |
ath9k_hw: Add function to configure tx status ring buffer
Also reset tx status ring suring chip reset.
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/hw.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h index 457d8ddebf83..6dbbab95df59 100644 --- a/drivers/net/wireless/ath/ath9k/hw.h +++ b/drivers/net/wireless/ath/ath9k/hw.h | |||
@@ -761,6 +761,13 @@ struct ath_hw { | |||
761 | u32 intr_gen_timer_trigger; | 761 | u32 intr_gen_timer_trigger; |
762 | u32 intr_gen_timer_thresh; | 762 | u32 intr_gen_timer_thresh; |
763 | struct ath_gen_timer_table hw_gen_timers; | 763 | struct ath_gen_timer_table hw_gen_timers; |
764 | |||
765 | struct ar9003_txs *ts_ring; | ||
766 | void *ts_start; | ||
767 | u32 ts_paddr_start; | ||
768 | u32 ts_paddr_end; | ||
769 | u16 ts_tail; | ||
770 | u8 ts_size; | ||
764 | }; | 771 | }; |
765 | 772 | ||
766 | static inline struct ath_common *ath9k_hw_common(struct ath_hw *ah) | 773 | static inline struct ath_common *ath9k_hw_common(struct ath_hw *ah) |