Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 328180
b: refs/heads/master
c: b7d839b
h: refs/heads/master
v: v3
  • Loading branch information
Vinicius Costa Gomes authored and Gustavo Padovan committed Aug 15, 2012
1 parent 833d5fd commit 4aaa799
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 15 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: db4742756ae2a836618cd5acf599522573589149
refs/heads/master: b7d839bfff78a01705f3d7b0acd5257dc7b067c9
33 changes: 19 additions & 14 deletions trunk/net/bluetooth/hci_conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -521,29 +521,19 @@ static struct hci_conn *hci_connect_acl(struct hci_dev *hdev, bdaddr_t *dst,
return acl;
}

/* Create SCO, ACL or LE connection.
* Device _must_ be locked */
struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst,
__u8 dst_type, __u8 sec_level, __u8 auth_type)
static struct hci_conn *hci_connect_sco(struct hci_dev *hdev, bdaddr_t *dst,
u8 sec_level, u8 auth_type)
{
struct hci_conn *acl;
struct hci_conn *sco;

BT_DBG("%s dst %s", hdev->name, batostr(dst));

if (type == LE_LINK)
return hci_connect_le(hdev, dst, dst_type, sec_level, auth_type);

acl = hci_connect_acl(hdev, dst, sec_level, auth_type);
if (IS_ERR(acl))
return acl;

if (type == ACL_LINK)
return acl;

sco = hci_conn_hash_lookup_ba(hdev, type, dst);
sco = hci_conn_hash_lookup_ba(hdev, SCO_LINK, dst);
if (!sco) {
sco = hci_conn_add(hdev, type, dst);
sco = hci_conn_add(hdev, SCO_LINK, dst);
if (!sco) {
hci_conn_put(acl);
return ERR_PTR(-ENOMEM);
Expand Down Expand Up @@ -572,6 +562,21 @@ struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst,
return sco;
}

/* Create SCO, ACL or LE connection. */
struct hci_conn *hci_connect(struct hci_dev *hdev, int type, bdaddr_t *dst,
__u8 dst_type, __u8 sec_level, __u8 auth_type)
{
BT_DBG("%s dst %s", hdev->name, batostr(dst));

if (type == LE_LINK)
return hci_connect_le(hdev, dst, dst_type, sec_level, auth_type);

if (type == ACL_LINK)
return hci_connect_acl(hdev, dst, sec_level, auth_type);

return hci_connect_sco(hdev, dst, sec_level, auth_type);
}

/* Check link security requirement */
int hci_conn_check_link_mode(struct hci_conn *conn)
{
Expand Down

0 comments on commit 4aaa799

Please sign in to comment.