https://bugzilla.kernel.org/show_bug.cgi?id=103451 --- Comment #27 from Rhobison Alves Pereira <rhobison@xxxxxxxxxxx> --- As well the line 3218 must be modified from this (file btusb.c, function static int btusb_probe(struct usb_interface *intf, const struct usb_device_id *id) ): // Line 3218 /* Fake CSR devices with broken commands */ if (bcdDevice <= 0x100) hdev->setup = btusb_setup_csr; set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks); //--------------------------------------------------- To This: // Line 3218 /* Fake CSR devices with broken commands */ if (bcdDevice <= 0x100 || bcdDevice == 0x134) hdev->setup = btusb_setup_csr; set_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks); -- You are receiving this mail because: You are the assignee for the bug. -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html