All LE controllers always implicitly stop advertising when establishing
connections. Therefore, be sure to clear the flag in the event handler
for new LE connections.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
 
        hci_dev_lock(hdev);
 
+       /* All controllers implicitly stop advertising in the event of a
+        * connection, so ensure that the state bit is cleared.
+        */
+       clear_bit(HCI_LE_ADV, &hdev->dev_flags);
+
        conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
        if (!conn) {
                conn = hci_conn_add(hdev, LE_LINK, &ev->bdaddr);