Commit 94ae4fb0 authored by Marcel Holtmann's avatar Marcel Holtmann Committed by Marcel Holtmann

[Bluetooth] Replace BCSP retransmitting message with BT_DBG

The message "Timeout, retransmitting 1 pkts" is not an error and so
change this into a debug message.
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent f9d4e5b6
......@@ -633,7 +633,8 @@ static void bcsp_timed_event(unsigned long arg)
struct sk_buff *skb;
unsigned long flags;
BT_ERR("Timeout, retransmitting %u pkts", bcsp->unack.qlen);
BT_DBG("hu %p retransmitting %u pkts", hu, bcsp->unack.qlen);
spin_lock_irqsave(&bcsp->unack.lock, flags);
while ((skb = __skb_dequeue_tail(&bcsp->unack)) != NULL) {
......
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