Bluetooth: Remove leftover debug messages
authorGustavo F. Padovan <padovan@profusion.mobi>
Wed, 11 May 2011 22:26:06 +0000 (19:26 -0300)
committerGustavo F. Padovan <padovan@profusion.mobi>
Thu, 12 May 2011 04:53:46 +0000 (01:53 -0300)
They were added by me while testing and I forgot to remove.

Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
net/bluetooth/l2cap_core.c

index d0769a8..a5ab4a2 100644 (file)
@@ -2095,7 +2095,7 @@ static inline int l2cap_connect_req(struct l2cap_conn *conn, struct l2cap_cmd_hd
        u16 dcid = 0, scid = __le16_to_cpu(req->scid);
        __le16 psm = req->psm;
 
-       BT_ERR("psm 0x%2.2x scid 0x%4.4x", psm, scid);
+       BT_DBG("psm 0x%2.2x scid 0x%4.4x", psm, scid);
 
        /* Check if we have socket listening on psm */
        pchan = l2cap_global_chan_by_psm(BT_LISTEN, psm, conn->src);
@@ -2104,8 +2104,6 @@ static inline int l2cap_connect_req(struct l2cap_conn *conn, struct l2cap_cmd_hd
                goto sendresp;
        }
 
-       BT_ERR("%p 0x%2.2x", pchan, pchan->psm);
-
        parent = pchan->sk;
 
        bh_lock_sock(parent);