Message ID | 20230711175743.20606-1-rgammans@gammascience.co.uk (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | Bluetooth: btusb: Add support for another MediaTek 7922 VID/PID | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | success | Gitlint PASS |
tedd_an/SubjectPrefix | success | Gitlint PASS |
tedd_an/BuildKernel | success | BuildKernel PASS |
tedd_an/CheckAllWarning | success | CheckAllWarning PASS |
tedd_an/CheckSparse | success | CheckSparse PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/BuildKernel32 | success | BuildKernel32 PASS |
tedd_an/TestRunnerSetup | success | TestRunnerSetup PASS |
tedd_an/TestRunner_l2cap-tester | success | TestRunner PASS |
tedd_an/TestRunner_iso-tester | success | TestRunner PASS |
tedd_an/TestRunner_bnep-tester | success | TestRunner PASS |
tedd_an/TestRunner_mgmt-tester | success | TestRunner PASS |
tedd_an/TestRunner_rfcomm-tester | success | TestRunner PASS |
tedd_an/TestRunner_sco-tester | success | TestRunner PASS |
tedd_an/TestRunner_ioctl-tester | success | TestRunner PASS |
tedd_an/TestRunner_mesh-tester | success | TestRunner PASS |
tedd_an/TestRunner_smp-tester | success | TestRunner PASS |
tedd_an/TestRunner_userchan-tester | success | TestRunner PASS |
tedd_an/IncrementalBuild | success | Incremental Build PASS |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=764543 ---Test result--- Test Summary: CheckPatch PASS 0.72 seconds GitLint PASS 0.36 seconds SubjectPrefix PASS 0.13 seconds BuildKernel PASS 33.53 seconds CheckAllWarning PASS 36.66 seconds CheckSparse PASS 42.19 seconds CheckSmatch PASS 113.29 seconds BuildKernel32 PASS 32.36 seconds TestRunnerSetup PASS 494.07 seconds TestRunner_l2cap-tester PASS 23.55 seconds TestRunner_iso-tester PASS 42.13 seconds TestRunner_bnep-tester PASS 10.85 seconds TestRunner_mgmt-tester PASS 223.90 seconds TestRunner_rfcomm-tester PASS 16.23 seconds TestRunner_sco-tester PASS 17.11 seconds TestRunner_ioctl-tester PASS 18.39 seconds TestRunner_mesh-tester PASS 13.72 seconds TestRunner_smp-tester PASS 14.58 seconds TestRunner_userchan-tester PASS 11.58 seconds IncrementalBuild PASS 30.78 seconds --- Regards, Linux Bluetooth
Hi Roger, On Tue, Jul 11, 2023 at 10:58 AM Roger Gammans <rgammans@gammascience.co.uk> wrote: > > This one is found on the Dell Inspiron 2-in-1 7435 > > Signed-off-by: Roger Gammans <rgammans@gammascience.co.uk> > --- > drivers/bluetooth/btusb.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c > index 2a8e2bb038f5..bda50d84c886 100644 > --- a/drivers/bluetooth/btusb.c > +++ b/drivers/bluetooth/btusb.c > @@ -622,6 +622,9 @@ static const struct usb_device_id blacklist_table[] = { > { USB_DEVICE(0x0489, 0xe0e4), .driver_info = BTUSB_MEDIATEK | > BTUSB_WIDEBAND_SPEECH | > BTUSB_VALID_LE_STATES }, > + { USB_DEVICE(0x0489, 0xe0f1), .driver_info = BTUSB_MEDIATEK | > + BTUSB_WIDEBAND_SPEECH | > + BTUSB_VALID_LE_STATES }, > { USB_DEVICE(0x0489, 0xe0f2), .driver_info = BTUSB_MEDIATEK | > BTUSB_WIDEBAND_SPEECH | > BTUSB_VALID_LE_STATES }, > -- > 2.39.2 Please add the information from /sys/kernel/debug/usb/devices.
On Wed, 2023-07-12 at 14:08 -0700, Luiz Augusto von Dentz wrote: > Hi Roger, > > Please add the information from /sys/kernel/debug/usb/devices. No problem. V2 inbound shortly.
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 2a8e2bb038f5..bda50d84c886 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -622,6 +622,9 @@ static const struct usb_device_id blacklist_table[] = { { USB_DEVICE(0x0489, 0xe0e4), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH | BTUSB_VALID_LE_STATES }, + { USB_DEVICE(0x0489, 0xe0f1), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH | + BTUSB_VALID_LE_STATES }, { USB_DEVICE(0x0489, 0xe0f2), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH | BTUSB_VALID_LE_STATES },
This one is found on the Dell Inspiron 2-in-1 7435 Signed-off-by: Roger Gammans <rgammans@gammascience.co.uk> --- drivers/bluetooth/btusb.c | 3 +++ 1 file changed, 3 insertions(+)