diff options
author | Kalle Valo <kvalo@qca.qualcomm.com> | 2013-09-08 10:55:50 -0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2013-09-12 11:21:37 -0400 |
commit | 24cfade11e20255f21ae1ef50591208ab3fe6a4c (patch) | |
tree | 25d726d73b99d5c2678b4b8737a5972709dfc11b /drivers/net/wireless/ath/ath10k/ce.c | |
parent | effea9688dae6ac1073b9f086903ddda8dda0b5a (diff) |
ath10k: add boot debug messages to pci.c and ce.c
To unify all boot related debug messages into one debug
level.
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/ce.c')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/ce.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath10k/ce.c b/drivers/net/wireless/ath/ath10k/ce.c index 924b29ec7a74..4f8373c5a86c 100644 --- a/drivers/net/wireless/ath/ath10k/ce.c +++ b/drivers/net/wireless/ath/ath10k/ce.c | |||
@@ -973,6 +973,10 @@ static int ath10k_ce_init_src_ring(struct ath10k *ar, | |||
973 | ath10k_ce_src_ring_lowmark_set(ar, ctrl_addr, 0); | 973 | ath10k_ce_src_ring_lowmark_set(ar, ctrl_addr, 0); |
974 | ath10k_ce_src_ring_highmark_set(ar, ctrl_addr, nentries); | 974 | ath10k_ce_src_ring_highmark_set(ar, ctrl_addr, nentries); |
975 | 975 | ||
976 | ath10k_dbg(ATH10K_DBG_BOOT, | ||
977 | "boot ce src ring id %d entries %d base_addr %p\n", | ||
978 | ce_id, nentries, src_ring->base_addr_owner_space); | ||
979 | |||
976 | return 0; | 980 | return 0; |
977 | } | 981 | } |
978 | 982 | ||
@@ -1054,6 +1058,10 @@ static int ath10k_ce_init_dest_ring(struct ath10k *ar, | |||
1054 | ath10k_ce_dest_ring_lowmark_set(ar, ctrl_addr, 0); | 1058 | ath10k_ce_dest_ring_lowmark_set(ar, ctrl_addr, 0); |
1055 | ath10k_ce_dest_ring_highmark_set(ar, ctrl_addr, nentries); | 1059 | ath10k_ce_dest_ring_highmark_set(ar, ctrl_addr, nentries); |
1056 | 1060 | ||
1061 | ath10k_dbg(ATH10K_DBG_BOOT, | ||
1062 | "boot ce dest ring id %d entries %d base_addr %p\n", | ||
1063 | ce_id, nentries, dest_ring->base_addr_owner_space); | ||
1064 | |||
1057 | return 0; | 1065 | return 0; |
1058 | } | 1066 | } |
1059 | 1067 | ||