diff options
author | John W. Linville <linville@tuxdriver.com> | 2010-10-15 16:11:56 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-10-15 16:11:56 -0400 |
commit | c64557d666eb62eb5f296c6b93bd0a5525ed1e36 (patch) | |
tree | 1e25cc32521d06ae876de18bb8e48b3cf9d30808 /drivers/net/wireless/ath/ath9k/ar9003_phy.c | |
parent | 1a63c353c856c9f6d44a533afb6ad6dbbcdea683 (diff) | |
parent | 0d91f22b75347d9503b17a42b6c74d3f7750acd6 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6 into for-davem
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ar9003_phy.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ar9003_phy.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_phy.c b/drivers/net/wireless/ath/ath9k/ar9003_phy.c index efb05599b84c..669b777729b3 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_phy.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_phy.c | |||
@@ -1254,13 +1254,12 @@ void ar9003_hw_bb_watchdog_dbg_info(struct ath_hw *ah) | |||
1254 | "** BB mode: BB_gen_controls=0x%08x **\n", | 1254 | "** BB mode: BB_gen_controls=0x%08x **\n", |
1255 | REG_READ(ah, AR_PHY_GEN_CTRL)); | 1255 | REG_READ(ah, AR_PHY_GEN_CTRL)); |
1256 | 1256 | ||
1257 | ath9k_hw_update_cycle_counters(ah); | 1257 | #define PCT(_field) (common->cc_survey._field * 100 / common->cc_survey.cycles) |
1258 | #define PCT(_field) (ah->cc_delta._field * 100 / ah->cc_delta.cycles) | 1258 | if (common->cc_survey.cycles) |
1259 | if (ah->cc_delta.cycles) | ||
1260 | ath_print(common, ATH_DBG_RESET, | 1259 | ath_print(common, ATH_DBG_RESET, |
1261 | "** BB busy times: rx_clear=%d%%, " | 1260 | "** BB busy times: rx_clear=%d%%, " |
1262 | "rx_frame=%d%%, tx_frame=%d%% **\n", | 1261 | "rx_frame=%d%%, tx_frame=%d%% **\n", |
1263 | PCT(rx_clear), PCT(rx_frame), PCT(tx_frame)); | 1262 | PCT(rx_busy), PCT(rx_frame), PCT(tx_frame)); |
1264 | 1263 | ||
1265 | ath_print(common, ATH_DBG_RESET, | 1264 | ath_print(common, ATH_DBG_RESET, |
1266 | "==== BB update: done ====\n\n"); | 1265 | "==== BB update: done ====\n\n"); |