Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277735
b: refs/heads/master
c: 08add51
h: refs/heads/master
i:
  277733: 5f88d67
  277731: b9f8dae
  277727: cbfee86
v: v3
  • Loading branch information
Mat Martineau authored and Gustavo F. Padovan committed Nov 7, 2011
1 parent 68211a4 commit 3a81316
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8d5a04a130e3493c17eae7a881102ab1a4283736
refs/heads/master: 08add513caa8930b8f7b9d5837a7dda624741745
7 changes: 6 additions & 1 deletion trunk/net/bluetooth/hci_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1410,14 +1410,19 @@ int hci_add_adv_entry(struct hci_dev *hdev,
int hci_register_dev(struct hci_dev *hdev)
{
struct list_head *head = &hci_dev_list, *p;
int i, id = 0, error;
int i, id, error;

BT_DBG("%p name %s bus %d owner %p", hdev, hdev->name,
hdev->bus, hdev->owner);

if (!hdev->open || !hdev->close || !hdev->destruct)
return -EINVAL;

/* Do not allow HCI_AMP devices to register at index 0,
* so the index can be used as the AMP controller ID.
*/
id = (hdev->dev_type == HCI_BREDR) ? 0 : 1;

write_lock_bh(&hci_dev_list_lock);

/* Find first available device id */
Expand Down

0 comments on commit 3a81316

Please sign in to comment.