aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/l2cap.h
diff options
context:
space:
mode:
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>2012-02-17 11:40:56 +0200
committerJohan Hedberg <johan.hedberg@intel.com>2012-02-17 13:01:54 +0200
commite05dcc3291dcfe9ab1b456f38ccb3041ebbda59c (patch)
treeb1d7c7a5b31160e5689b693e446dbdda52f8d2c7 /include/net/bluetooth/l2cap.h
parentBluetooth: Move scope of state_to_string (diff)
downloadlinux-dev-e05dcc3291dcfe9ab1b456f38ccb3041ebbda59c.tar.xz
linux-dev-e05dcc3291dcfe9ab1b456f38ccb3041ebbda59c.zip
Bluetooth: Use symbolic names for state in debug
Use state_to_string function in debug statements. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'include/net/bluetooth/l2cap.h')
-rw-r--r--include/net/bluetooth/l2cap.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
index 42fdbb833254..bbb0e214e51d 100644
--- a/include/net/bluetooth/l2cap.h
+++ b/include/net/bluetooth/l2cap.h
@@ -612,7 +612,8 @@ static inline void l2cap_chan_put(struct l2cap_chan *c)
static inline void l2cap_set_timer(struct l2cap_chan *chan,
struct delayed_work *work, long timeout)
{
- BT_DBG("chan %p state %d timeout %ld", chan, chan->state, timeout);
+ BT_DBG("chan %p state %s timeout %ld", chan,
+ state_to_string(chan->state), timeout);
if (!cancel_delayed_work(work))
l2cap_chan_hold(chan);