qcacmn: Stop printing credit reports

Credit reports are logged to memory.
Root causing credit report issues requires
memory dumps, so having them in the dmesg
gives little additional value.

Change-Id: Ia84adb156b8af49867116d367613264008fcc750
CRs-Fixed: 1026520
This commit is contained in:
Houston Hoffman
2016-06-08 19:55:17 -07:00
committed by Vishwajith Upendra
parent c50572b27a
commit fb274b8013

View File

@@ -86,16 +86,6 @@ void htc_credit_record(htc_credit_exchange_type type, uint32_t tx_credit,
htc_credit_history_buffer[g_htc_credit_history_idx].htc_tx_queue_depth = htc_credit_history_buffer[g_htc_credit_history_idx].htc_tx_queue_depth =
htc_tx_queue_depth; htc_tx_queue_depth;
g_htc_credit_history_idx++; g_htc_credit_history_idx++;
#ifdef QCA_WIFI_3_0_EMU
if (type == HTC_REQUEST_CREDIT)
printk("\nrequest_credits-> current_credit %d, pending commands %d\n",
tx_credit, htc_tx_queue_depth);
else if (type == HTC_PROCESS_CREDIT_REPORT)
printk("\ncredit_report<- current_credit %d, pending commands %d\n",
tx_credit, htc_tx_queue_depth);
#endif
} }
void htc_dump_counter_info(HTC_HANDLE HTCHandle) void htc_dump_counter_info(HTC_HANDLE HTCHandle)