Commit 42a2efbc authored by Kalle Valo's avatar Kalle Valo

ath10k: add boot debug messages to htc.c

To unify the boot debug level.
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 24cfade1
...@@ -752,8 +752,8 @@ int ath10k_htc_connect_service(struct ath10k_htc *htc, ...@@ -752,8 +752,8 @@ int ath10k_htc_connect_service(struct ath10k_htc *htc,
tx_alloc = ath10k_htc_get_credit_allocation(htc, tx_alloc = ath10k_htc_get_credit_allocation(htc,
conn_req->service_id); conn_req->service_id);
if (!tx_alloc) if (!tx_alloc)
ath10k_dbg(ATH10K_DBG_HTC, ath10k_dbg(ATH10K_DBG_BOOT,
"HTC Service %s does not allocate target credits\n", "boot htc service %s does not allocate target credits\n",
htc_service_name(conn_req->service_id)); htc_service_name(conn_req->service_id));
skb = ath10k_htc_build_tx_ctrl_skb(htc->ar); skb = ath10k_htc_build_tx_ctrl_skb(htc->ar);
...@@ -873,19 +873,19 @@ int ath10k_htc_connect_service(struct ath10k_htc *htc, ...@@ -873,19 +873,19 @@ int ath10k_htc_connect_service(struct ath10k_htc *htc,
if (status) if (status)
return status; return status;
ath10k_dbg(ATH10K_DBG_HTC, ath10k_dbg(ATH10K_DBG_BOOT,
"HTC service: %s UL pipe: %d DL pipe: %d eid: %d ready\n", "boot htc service '%s' ul pipe %d dl pipe %d eid %d ready\n",
htc_service_name(ep->service_id), ep->ul_pipe_id, htc_service_name(ep->service_id), ep->ul_pipe_id,
ep->dl_pipe_id, ep->eid); ep->dl_pipe_id, ep->eid);
ath10k_dbg(ATH10K_DBG_HTC, ath10k_dbg(ATH10K_DBG_BOOT,
"EP %d UL polled: %d, DL polled: %d\n", "boot htc ep %d ul polled %d dl polled %d\n",
ep->eid, ep->ul_is_polled, ep->dl_is_polled); ep->eid, ep->ul_is_polled, ep->dl_is_polled);
if (disable_credit_flow_ctrl && ep->tx_credit_flow_enabled) { if (disable_credit_flow_ctrl && ep->tx_credit_flow_enabled) {
ep->tx_credit_flow_enabled = false; ep->tx_credit_flow_enabled = false;
ath10k_dbg(ATH10K_DBG_HTC, ath10k_dbg(ATH10K_DBG_BOOT,
"HTC service: %s eid: %d TX flow control disabled\n", "boot htc service '%s' eid %d TX flow control disabled\n",
htc_service_name(ep->service_id), assigned_eid); htc_service_name(ep->service_id), assigned_eid);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment