diff options
author | Pavel Roskin <proski@gnu.org> | 2011-07-07 18:13:30 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-07-08 11:44:29 -0400 |
commit | fdd55d14b7d3a721e60fdc8be12ec0beb9cda8c6 (patch) | |
tree | 67c3de8fe4e92c0e65d7d194897d669e487de1af | |
parent | 0a5d381348fcb12d27289b3a66824fb3481911ce (diff) |
ath5k: remove unneeded parentheses after return
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/ath/ath5k/ath5k.h | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath5k/pcu.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath5k/ath5k.h b/drivers/net/wireless/ath/ath5k/ath5k.h index 79e11ff40fc3..48bd2ded449e 100644 --- a/drivers/net/wireless/ath/ath5k/ath5k.h +++ b/drivers/net/wireless/ath/ath5k/ath5k.h | |||
@@ -780,7 +780,7 @@ extern int ath5k_modparam_nohwcrypt; | |||
780 | 780 | ||
781 | #define AR5K_ASSERT_ENTRY(_e, _s) do { \ | 781 | #define AR5K_ASSERT_ENTRY(_e, _s) do { \ |
782 | if (_e >= _s) \ | 782 | if (_e >= _s) \ |
783 | return (false); \ | 783 | return false; \ |
784 | } while (0) | 784 | } while (0) |
785 | 785 | ||
786 | /* | 786 | /* |
diff --git a/drivers/net/wireless/ath/ath5k/pcu.c b/drivers/net/wireless/ath/ath5k/pcu.c index 712a9ac4000e..0a0f63e9675b 100644 --- a/drivers/net/wireless/ath/ath5k/pcu.c +++ b/drivers/net/wireless/ath/ath5k/pcu.c | |||
@@ -536,7 +536,7 @@ u64 ath5k_hw_get_tsf64(struct ath5k_hw *ah) | |||
536 | 536 | ||
537 | WARN_ON( i == ATH5K_MAX_TSF_READ ); | 537 | WARN_ON( i == ATH5K_MAX_TSF_READ ); |
538 | 538 | ||
539 | return (((u64)tsf_upper1 << 32) | tsf_lower); | 539 | return ((u64)tsf_upper1 << 32) | tsf_lower; |
540 | } | 540 | } |
541 | 541 | ||
542 | /** | 542 | /** |