diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2009-08-07 09:45:09 +0530 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-08-14 09:12:48 -0400 |
commit | 54e4cec69e70ba30aec68650fb95b3a7e1e6dc18 (patch) | |
tree | 78159e30f1b5cb00bc71fd2b78e398bb0b4df23e /drivers/net/wireless/ath/ath9k/hw.c | |
parent | 87b5bee86d281383ac2e5cae20ec47afa8fa374a (diff) | |
download | talos-op-linux-54e4cec69e70ba30aec68650fb95b3a7e1e6dc18.tar.gz talos-op-linux-54e4cec69e70ba30aec68650fb95b3a7e1e6dc18.zip |
ath9k: Cleanup function return types
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/hw.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 71a3bcc450a2..6514dc7a7be7 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c @@ -4019,14 +4019,12 @@ void ath9k_hw_reset_tsf(struct ath_hw *ah) ath9k_ps_restore(ah->ah_sc); } -bool ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting) +void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting) { if (setting) ah->misc_mode |= AR_PCU_TX_ADD_TSF; else ah->misc_mode &= ~AR_PCU_TX_ADD_TSF; - - return true; } bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us) |