aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorVinicius Costa Gomes <vinicius.gomes@openbossa.org>2012-07-27 18:33:00 -0400
committerGustavo Padovan <gustavo.padovan@collabora.co.uk>2012-08-14 23:53:21 -0400
commite6dd548b9a3c7b3fcdd2fd97880abf7597e8334b (patch)
tree1379ab780fd28da1de57c5f3b3a8d3fdf842ef36 /net/bluetooth
parent4cd2d98340b4f03d5532c30fdaeb451b035429cb (diff)
Bluetooth: Add type information to the hci_connect() debug statement
Now that we have a "connect" function for each link type, we should be able to indentify which function is going to be called. Signed-off-by: Vinicius Costa Gomes <vinicius.gomes@openbossa.org> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/hci_conn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c
index 2e7b7765e0ea..98670b1df17b 100644
--- a/net/bluetooth/hci_conn.c
+++ b/net/bluetooth/hci_conn.c
@@ -566,7 +566,7 @@ static struct hci_conn *hci_connect_sco(struct hci_dev *hdev, bdaddr_t *dst,
566struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst, 566struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst,
567 __u8 dst_type, __u8 sec_level, __u8 auth_type) 567 __u8 dst_type, __u8 sec_level, __u8 auth_type)
568{ 568{
569 BT_DBG("%s dst %s", hdev->name, batostr(dst)); 569 BT_DBG("%s dst %s type 0x%x", hdev->name, batostr(dst), type);
570 570
571 switch (type) { 571 switch (type) {
572 case LE_LINK: 572 case LE_LINK: