Message ID | 20230310151410.2686458-1-rcheleguini@google.com |
---|---|
State | Accepted |
Commit | 2dc354d004ed16515b34e97659c1a407661d2feb |
Headers | show |
Series | Bluetooth: Improve support for Actions Semi ATS2851 based devices | expand |
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Fri, 10 Mar 2023 15:14:10 +0000 you wrote: > Add two more quirks to resume the device initialization and basic > operation as the device seems not to support "Read Transmit Power" > and "Set Extended Scan Parameters". > > < HCI Command: LE Read Transmit Power (0x08|0x004b) plen 0 > > HCI Event: Command Status (0x0f) plen 4 > LE Read Transmit Power (0x08|0x004b) ncmd 1 > Status: Unknown HCI Command (0x01) > > [...] Here is the summary with links: - Bluetooth: Improve support for Actions Semi ATS2851 based devices https://git.kernel.org/bluetooth/bluetooth-next/c/2dc354d004ed You are awesome, thank you!
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 0c94cd7f4af3..7382b021f3df 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -4104,6 +4104,8 @@ static int btusb_probe(struct usb_interface *intf, if (id->driver_info & BTUSB_ACTIONS_SEMI) { /* Support is advertised, but not implemented */ set_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks); + set_bit(HCI_QUIRK_BROKEN_READ_TRANSMIT_POWER, &hdev->quirks); + set_bit(HCI_QUIRK_BROKEN_EXT_SCAN, &hdev->quirks); } if (!reset)