summaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_core.c
diff options
context:
space:
mode:
authorMarcel Holtmann2014-07-24 20:04:16 +0200
committerJohan Hedberg2014-07-27 09:25:52 +0200
commit32226e4f1af2b58983676b577ce33403c08e6c94 (patch)
tree97721c6453e9f05d589309ec6566dca8010a6745 /net/bluetooth/hci_core.c
parentBluetooth: Expose default LE advertising interval via debugfs (diff)
downloadkernel-qcow2-linux-32226e4f1af2b58983676b577ce33403c08e6c94.tar.gz
kernel-qcow2-linux-32226e4f1af2b58983676b577ce33403c08e6c94.tar.xz
kernel-qcow2-linux-32226e4f1af2b58983676b577ce33403c08e6c94.zip
Bluetooth: Set Simultaneous LE and BR/EDR controller option to zero
With the Bluetooth 4.1 specification the Simultaneous LE and BR/EDR controller option has been deprecated. It shall be set to zero and ignored otherwise. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/hci_core.c')
-rw-r--r--net/bluetooth/hci_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index 910f608365f7..61bd1a8c5849 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -1623,7 +1623,7 @@ static void hci_set_le_support(struct hci_request *req)
if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
cp.le = 0x01;
- cp.simul = lmp_le_br_capable(hdev);
+ cp.simul = 0x00;
}
if (cp.le != lmp_host_le_capable(hdev))