aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>2012-04-16 16:32:04 +0300
committerGustavo Padovan <gustavo@padovan.org>2012-05-09 01:40:35 -0300
commit2d8b3a11623cf5203bc063927b6fc742625f1ebf (patch)
tree7520be179c397a04af2b3a55ea66fce55790fae6 /net
parentBluetooth: Remove strtoba header declared but not defined (diff)
downloadlinux-dev-2d8b3a11623cf5203bc063927b6fc742625f1ebf.tar.xz
linux-dev-2d8b3a11623cf5203bc063927b6fc742625f1ebf.zip
Bluetooth: Fix debug printing unallocated name
It does make sense to print hdev name after allocation. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/hci_core.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index f7911e9224c5..544c7e3a40d2 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -1741,8 +1741,6 @@ int hci_register_dev(struct hci_dev *hdev)
struct list_head *head = &hci_dev_list, *p;
int i, id, error;
- BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
-
if (!hdev->open || !hdev->close)
return -EINVAL;
@@ -1762,6 +1760,9 @@ int hci_register_dev(struct hci_dev *hdev)
sprintf(hdev->name, "hci%d", id);
hdev->id = id;
+
+ BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
+
list_add_tail(&hdev->list, head);
mutex_init(&hdev->lock);