public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: bluetooth: btti_main.c: replace quirks with new quirk_flags bitmap
@ 2026-03-27 15:27 Alexander Feilke
  2026-03-27 16:49 ` bluez.test.bot
  0 siblings, 1 reply; 2+ messages in thread
From: Alexander Feilke @ 2026-03-27 15:27 UTC (permalink / raw)
  To: linux-bluetooth, linux-kernel
  Cc: Alexander Feilke, Marcel Holtmann, Luiz Augusto von Dentz

The integer was changed to a bitmask in [1], but wasnt applied in the latest
patch that integrated the btti driver.

[1] 6851a0c228fc ("Bluetooth: hci_dev: replace 'quirks' integer by 'quirk_flags' bitmap")

Fixes: d1ba06b645ef ("PENDING: bluetooth: add cc33xx BLE UART and SDIO drivers")
Signed-off-by: Alexander Feilke <Alexander.Feilke@ew.tq-group.com>
---
 drivers/bluetooth/btti_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/bluetooth/btti_main.c b/drivers/bluetooth/btti_main.c
index d3ca09e99b818..d6e1c68277f2d 100644
--- a/drivers/bluetooth/btti_main.c
+++ b/drivers/bluetooth/btti_main.c
@@ -329,7 +329,7 @@ int btti_hci_register_hdev(struct btti_private *private_data)
 	hdev->setup = btti_hci_if_setup;
 	SET_HCIDEV_DEV(hdev, &sdiodev->func->dev);
 
-	set_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks);
+	hci_set_quirk(hdev, HCI_QUIRK_NON_PERSISTENT_SETUP);
 
 	ret = hci_register_dev(hdev);
 	if (ret < 0) {
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-03-27 16:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-27 15:27 [PATCH] drivers: bluetooth: btti_main.c: replace quirks with new quirk_flags bitmap Alexander Feilke
2026-03-27 16:49 ` bluez.test.bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox