Commit 73e082f8 authored by Johan Hedberg's avatar Johan Hedberg Committed by Marcel Holtmann

Bluetooth: Use the correct flag to decide to disable advertising

When deciding to call disable_advertising() we're interested in the real
state instead of the mgmt setting. Use therefore HCI_LE_ADV instead of
the HCI_ADVERTISING flag.
Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 0ec5ae84
...@@ -1301,7 +1301,7 @@ static int clean_up_hci_state(struct hci_dev *hdev) ...@@ -1301,7 +1301,7 @@ static int clean_up_hci_state(struct hci_dev *hdev)
hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan); hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
} }
if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) if (test_bit(HCI_LE_ADV, &hdev->dev_flags))
disable_advertising(&req); disable_advertising(&req);
hci_stop_discovery(&req); hci_stop_discovery(&req);
...@@ -2230,7 +2230,7 @@ static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len) ...@@ -2230,7 +2230,7 @@ static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
hci_cp.le = val; hci_cp.le = val;
hci_cp.simul = lmp_le_br_capable(hdev); hci_cp.simul = lmp_le_br_capable(hdev);
} else { } else {
if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) if (test_bit(HCI_LE_ADV, &hdev->dev_flags))
disable_advertising(&req); disable_advertising(&req);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment