mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
Bluetooth: fix invalid-bdaddr quirk for non-persistent setup
Devices that lack persistent storage for the device address can indicate
this by setting the HCI_QUIRK_INVALID_BDADDR which causes the controller
to be marked as unconfigured until user space has set a valid address.
Once configured, the device address must be set on every setup for
controllers with HCI_QUIRK_NON_PERSISTENT_SETUP to avoid marking the
controller as unconfigured and requiring the address to be set again.
Fixes: 740011cfe9
("Bluetooth: Add new quirk for non-persistent setup settings")
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
committed by
Jakub Kicinski
parent
f752a0b334
commit
0cb7365850
@@ -4626,23 +4626,17 @@ static int hci_dev_setup_sync(struct hci_dev *hdev)
|
|||||||
invalid_bdaddr = test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
|
invalid_bdaddr = test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
|
||||||
|
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
if (test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks)) {
|
if (test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks) &&
|
||||||
if (!bacmp(&hdev->public_addr, BDADDR_ANY))
|
!bacmp(&hdev->public_addr, BDADDR_ANY))
|
||||||
hci_dev_get_bd_addr_from_property(hdev);
|
hci_dev_get_bd_addr_from_property(hdev);
|
||||||
|
|
||||||
if (bacmp(&hdev->public_addr, BDADDR_ANY) &&
|
if ((invalid_bdaddr ||
|
||||||
hdev->set_bdaddr) {
|
test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks)) &&
|
||||||
ret = hdev->set_bdaddr(hdev,
|
bacmp(&hdev->public_addr, BDADDR_ANY) &&
|
||||||
&hdev->public_addr);
|
hdev->set_bdaddr) {
|
||||||
|
ret = hdev->set_bdaddr(hdev, &hdev->public_addr);
|
||||||
/* If setting of the BD_ADDR from the device
|
if (!ret)
|
||||||
* property succeeds, then treat the address
|
invalid_bdaddr = false;
|
||||||
* as valid even if the invalid BD_ADDR
|
|
||||||
* quirk indicates otherwise.
|
|
||||||
*/
|
|
||||||
if (!ret)
|
|
||||||
invalid_bdaddr = false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user