Bluetooth: hci_sync: Fix hci_resume_advertising_sync
hci_resume_advertising_sync is suppose to resume all instance paused by
hci_pause_advertising_sync, this logic is used for procedures are only
allowed when not advertising, but instance 0x00 was not being
re-enabled.
Fixes: ad383c2c65 ("Bluetooth: hci_sync: Enable advertising when LL privacy is enabled")
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
pull/1354/merge
parent
1c5091a9b4
commit
1488af7b8b
|
|
@ -2594,6 +2594,13 @@ static int hci_resume_advertising_sync(struct hci_dev *hdev)
|
||||||
hci_remove_ext_adv_instance_sync(hdev, adv->instance,
|
hci_remove_ext_adv_instance_sync(hdev, adv->instance,
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* If current advertising instance is set to instance 0x00
|
||||||
|
* then we need to re-enable it.
|
||||||
|
*/
|
||||||
|
if (!hdev->cur_adv_instance)
|
||||||
|
err = hci_enable_ext_advertising_sync(hdev,
|
||||||
|
hdev->cur_adv_instance);
|
||||||
} else {
|
} else {
|
||||||
/* Schedule for most recent instance to be restarted and begin
|
/* Schedule for most recent instance to be restarted and begin
|
||||||
* the software rotation loop
|
* the software rotation loop
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue