]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
Bluetooth: Clear all LE white list entries when powering controller
authorMarcel Holtmann <marcel@holtmann.org>
Fri, 28 Feb 2014 04:37:29 +0000 (20:37 -0800)
committerJohan Hedberg <johan.hedberg@intel.com>
Fri, 28 Feb 2014 07:31:14 +0000 (09:31 +0200)
When starting up a controller make sure that all LE white list entries
are cleared. Normally the HCI Reset takes care of this. This is just
in case no HCI Reset has been executed.

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

index 75cf447ca000b01ff5cd43f4417a363e1789d181..ab547277f909d7ac0482a323faa8fb02dd7deb50 100644 (file)
@@ -1346,14 +1346,17 @@ static void le_setup(struct hci_request *req)
        /* Read LE Local Supported Features */
        hci_req_add(req, HCI_OP_LE_READ_LOCAL_FEATURES, 0, NULL);
 
+       /* Read LE Supported States */
+       hci_req_add(req, HCI_OP_LE_READ_SUPPORTED_STATES, 0, NULL);
+
        /* Read LE Advertising Channel TX Power */
        hci_req_add(req, HCI_OP_LE_READ_ADV_TX_POWER, 0, NULL);
 
        /* Read LE White List Size */
        hci_req_add(req, HCI_OP_LE_READ_WHITE_LIST_SIZE, 0, NULL);
 
-       /* Read LE Supported States */
-       hci_req_add(req, HCI_OP_LE_READ_SUPPORTED_STATES, 0, NULL);
+       /* Clear LE White List */
+       hci_req_add(req, HCI_OP_LE_CLEAR_WHITE_LIST, 0, NULL);
 
        /* LE-only controllers have LE implicitly enabled */
        if (!lmp_bredr_capable(hdev))