aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/hw.h
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2009-09-13 05:08:34 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-10-07 16:39:28 -0400
commitcd9bf689600e62d84449d65b3d25fb6d2757589e (patch)
treef9d0569c8b37ccd0a380c75bfbd528e511cd5ceb /drivers/net/wireless/ath/ath9k/hw.h
parentb002a4a950e41326310795cf4a0c74d0e90fa70a (diff)
ath9k: separate core driver and hw timer code
Signed-off-by: Luis R. Rodriguez <lrodriguez@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.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h
index 1f6dece9b007..32401742751e 100644
--- a/drivers/net/wireless/ath/ath9k/hw.h
+++ b/drivers/net/wireless/ath/ath9k/hw.h
@@ -682,9 +682,12 @@ struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
682 void (*overflow)(void *), 682 void (*overflow)(void *),
683 void *arg, 683 void *arg,
684 u8 timer_index); 684 u8 timer_index);
685void ath_gen_timer_start(struct ath_hw *ah, struct ath_gen_timer *timer, 685void ath9k_hw_gen_timer_start(struct ath_hw *ah,
686 u32 timer_next, u32 timer_period); 686 struct ath_gen_timer *timer,
687void ath_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer); 687 u32 timer_next,
688 u32 timer_period);
689void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer);
690
688void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer); 691void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer);
689void ath_gen_timer_isr(struct ath_hw *hw); 692void ath_gen_timer_isr(struct ath_hw *hw);
690u32 ath9k_hw_gettsf32(struct ath_hw *ah); 693u32 ath9k_hw_gettsf32(struct ath_hw *ah);