diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2015-11-11 14:44:57 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-11-19 17:50:32 +0100 |
commit | 0ad06aa6a7682319bb1adcc187a1fa8db6b2da2c (patch) | |
tree | 01582ee7875e7ab6e4fe337260c986e004330785 /net/bluetooth/mgmt.c | |
parent | 3dfe5905a7505bc0cbf5f63405631d8e188d9235 (diff) | |
download | linux-stable-0ad06aa6a7682319bb1adcc187a1fa8db6b2da2c.tar.gz linux-stable-0ad06aa6a7682319bb1adcc187a1fa8db6b2da2c.tar.bz2 linux-stable-0ad06aa6a7682319bb1adcc187a1fa8db6b2da2c.zip |
Bluetooth: Fix specifying role for LE connections
The hci_connect_le_scan() is (as the name implies) a master/central
role API, so it makes no sense in passing a role parameter to it. At
the same time this patch also fixes the direct advertising support for
LE L2CAP sockets where we now call the more appropriate hci_le_connect()
API if slave/peripheral role is desired.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/mgmt.c')
-rw-r--r-- | net/bluetooth/mgmt.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index e4ad0457547a..eca203e891d2 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -3518,8 +3518,7 @@ static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data, conn = hci_connect_le_scan(hdev, &cp->addr.bdaddr, addr_type, sec_level, - HCI_LE_CONN_TIMEOUT, - HCI_ROLE_MASTER); + HCI_LE_CONN_TIMEOUT); } if (IS_ERR(conn)) { |