Commit 71becf0c authored by Andrei Emeltchenko's avatar Andrei Emeltchenko Committed by Gustavo Padovan

Bluetooth: debug: Fix printing refcnt for hci_conn

Use the same style for refcnt printing through all Bluetooth code
taking the reference the l2cap_chan refcnt printing.
Signed-off-by: default avatarAndrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent 8e8c7e36
...@@ -581,8 +581,7 @@ void hci_conn_put_device(struct hci_conn *conn); ...@@ -581,8 +581,7 @@ void hci_conn_put_device(struct hci_conn *conn);
static inline void hci_conn_hold(struct hci_conn *conn) static inline void hci_conn_hold(struct hci_conn *conn)
{ {
BT_DBG("hcon %p refcnt %d -> %d", conn, atomic_read(&conn->refcnt), BT_DBG("hcon %p orig refcnt %d", conn, atomic_read(&conn->refcnt));
atomic_read(&conn->refcnt) + 1);
atomic_inc(&conn->refcnt); atomic_inc(&conn->refcnt);
cancel_delayed_work(&conn->disc_work); cancel_delayed_work(&conn->disc_work);
...@@ -590,8 +589,7 @@ static inline void hci_conn_hold(struct hci_conn *conn) ...@@ -590,8 +589,7 @@ static inline void hci_conn_hold(struct hci_conn *conn)
static inline void hci_conn_put(struct hci_conn *conn) static inline void hci_conn_put(struct hci_conn *conn)
{ {
BT_DBG("hcon %p refcnt %d -> %d", conn, atomic_read(&conn->refcnt), BT_DBG("hcon %p orig refcnt %d", conn, atomic_read(&conn->refcnt));
atomic_read(&conn->refcnt) - 1);
if (atomic_dec_and_test(&conn->refcnt)) { if (atomic_dec_and_test(&conn->refcnt)) {
unsigned long timeo; unsigned long timeo;
......
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