diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2011-10-13 08:21:15 -0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2011-11-11 05:50:57 -0500 |
commit | ebf29c95cfc6f7309ce999af4aa91ba22323f80d (patch) | |
tree | 7cf7e9f63ecd96c52354e5086a64b79b2795cd8d /drivers/net/wireless/ath/ath6kl/debug.c | |
parent | 8fffd9e5ec9ea046ff45c7974395ffbcb4bbef14 (diff) |
ath6kl: merge htc debug levels
It's not really necessary to have separate debug levels for htc tx and rx
so combine them.
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/debug.c')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/debug.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/debug.c b/drivers/net/wireless/ath/ath6kl/debug.c index 460f211bb40c..e109f29f5862 100644 --- a/drivers/net/wireless/ath/ath6kl/debug.c +++ b/drivers/net/wireless/ath/ath6kl/debug.c | |||
@@ -180,9 +180,10 @@ void dump_cred_dist_stats(struct htc_target *target) | |||
180 | list_for_each_entry(ep_list, &target->cred_dist_list, list) | 180 | list_for_each_entry(ep_list, &target->cred_dist_list, list) |
181 | dump_cred_dist(ep_list); | 181 | dump_cred_dist(ep_list); |
182 | 182 | ||
183 | ath6kl_dbg(ATH6KL_DBG_HTC_SEND, "ctxt:%p dist:%p\n", | 183 | ath6kl_dbg(ATH6KL_DBG_HTC, "ctxt:%p dist:%p\n", |
184 | target->cred_dist_cntxt, NULL); | 184 | target->cred_dist_cntxt, NULL); |
185 | ath6kl_dbg(ATH6KL_DBG_TRC, "credit distribution, total : %d, free : %d\n", | 185 | ath6kl_dbg(ATH6KL_DBG_HTC, |
186 | "credit distribution, total : %d, free : %d\n", | ||
186 | target->cred_dist_cntxt->total_avail_credits, | 187 | target->cred_dist_cntxt->total_avail_credits, |
187 | target->cred_dist_cntxt->cur_free_credits); | 188 | target->cred_dist_cntxt->cur_free_credits); |
188 | } | 189 | } |