]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Bluetooth: Fix sending write_scan_enable when BR/EDR is disabled
authorJohan Hedberg <johan.hedberg@intel.com>
Sat, 19 Oct 2013 20:38:21 +0000 (23:38 +0300)
committerMarcel Holtmann <marcel@holtmann.org>
Sun, 20 Oct 2013 16:05:40 +0000 (09:05 -0700)
We should only send the HCI_Write_Scan_Enable command from
mgmt_set_powered_failed() when BR/EDR support is enabled. This is
particularly important when the discoverable setting is also tied to LE.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/mgmt.c

index 20f6309f82455ef606b516079807e1710926ea6c..67b95a80f8294696b602d7e6e73862aa30958681 100644 (file)
@@ -4337,7 +4337,6 @@ void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
 void mgmt_discoverable_timeout(struct hci_dev *hdev)
 {
        struct hci_request req;
-       u8 scan = SCAN_PAGE;
 
        hci_dev_lock(hdev);
 
@@ -4349,7 +4348,11 @@ void mgmt_discoverable_timeout(struct hci_dev *hdev)
        clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
 
        hci_req_init(&req, hdev);
-       hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
+       if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
+               u8 scan = SCAN_PAGE;
+               hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
+                           sizeof(scan), &scan);
+       }
        update_class(&req);
        hci_req_run(&req, NULL);