Commit 2d8b3a11 authored by Andrei Emeltchenko's avatar Andrei Emeltchenko Committed by Gustavo Padovan

Bluetooth: Fix debug printing unallocated name

It does make sense to print hdev name after allocation.
Signed-off-by: default avatarAndrei Emeltchenko <andrei.emeltchenko@intel.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent e4787220
...@@ -1741,8 +1741,6 @@ int hci_register_dev(struct hci_dev *hdev) ...@@ -1741,8 +1741,6 @@ int hci_register_dev(struct hci_dev *hdev)
struct list_head *head = &hci_dev_list, *p; struct list_head *head = &hci_dev_list, *p;
int i, id, error; int i, id, error;
BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
if (!hdev->open || !hdev->close) if (!hdev->open || !hdev->close)
return -EINVAL; return -EINVAL;
...@@ -1762,6 +1760,9 @@ int hci_register_dev(struct hci_dev *hdev) ...@@ -1762,6 +1760,9 @@ int hci_register_dev(struct hci_dev *hdev)
sprintf(hdev->name, "hci%d", id); sprintf(hdev->name, "hci%d", id);
hdev->id = id; hdev->id = id;
BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
list_add_tail(&hdev->list, head); list_add_tail(&hdev->list, head);
mutex_init(&hdev->lock); mutex_init(&hdev->lock);
......
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