]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
Bluetooth: correct debug output
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>
Mon, 31 Oct 2011 14:17:21 +0000 (16:17 +0200)
committerGustavo F. Padovan <padovan@profusion.mobi>
Mon, 7 Nov 2011 19:24:45 +0000 (17:24 -0200)
l2cap_set_timer function prints sk instead of chan pointer.

Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
net/bluetooth/l2cap_core.c

index 18b0bba8630f735ff9b824212ae9b2753a012d05..76210cd6d3eae955fc7bf63bee2bcb35fa31cf8b 100644 (file)
@@ -220,7 +220,7 @@ static u16 l2cap_alloc_cid(struct l2cap_conn *conn)
 
 static void l2cap_set_timer(struct l2cap_chan *chan, struct timer_list *timer, long timeout)
 {
-       BT_DBG("chan %p state %d timeout %ld", chan->sk, chan->state, timeout);
+       BT_DBG("chan %p state %d timeout %ld", chan, chan->state, timeout);
 
        if (!mod_timer(timer, jiffies + msecs_to_jiffies(timeout)))
                chan_hold(chan);