Message ID | a2cd95d91354168876eab963bb7e1cfa1b31e985.camel@nuclearsunshine.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [1/1] Bluetooth: btusb: add 13d3/3608 VID/PID for MT7925 | 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=876458 ---Test result--- Test Summary: CheckPatch PASS 0.59 seconds GitLint PASS 0.27 seconds SubjectPrefix PASS 0.10 seconds BuildKernel PASS 29.94 seconds CheckAllWarning PASS 32.37 seconds CheckSparse PASS 37.93 seconds CheckSmatch PASS 102.21 seconds BuildKernel32 PASS 28.46 seconds TestRunnerSetup PASS 522.62 seconds TestRunner_l2cap-tester PASS 23.84 seconds TestRunner_iso-tester PASS 31.39 seconds TestRunner_bnep-tester PASS 4.81 seconds TestRunner_mgmt-tester PASS 118.29 seconds TestRunner_rfcomm-tester PASS 7.45 seconds TestRunner_sco-tester PASS 15.77 seconds TestRunner_ioctl-tester PASS 7.95 seconds TestRunner_mesh-tester PASS 5.95 seconds TestRunner_smp-tester PASS 6.92 seconds TestRunner_userchan-tester PASS 4.98 seconds IncrementalBuild PASS 27.64 seconds --- Regards, Linux Bluetooth
Dear Nuclear, Thank you for the patch. Am 03.08.24 um 23:44 schrieb Nuclear Sunshine: > The VID/PID are as seen for this chipset in the Asus Zenbook S 16 > (UM5606), and have been successfully tested with the mt7925e driver. I think it’s common to include the output of `/sys/kernel/debug/usb/devices`. > Signed-off-by: Nuclear Sunshine <kernel-2024-q3@nuclearsunshine.com> > --- > drivers/bluetooth/btusb.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c > index acdba5d77694..fccefa57506a 100644 > --- a/drivers/bluetooth/btusb.c > +++ b/drivers/bluetooth/btusb.c > @@ -696,6 +696,9 @@ static const struct usb_device_id quirks_table[] = { > { USB_DEVICE(0x13d3, 0x3603), .driver_info = BTUSB_MEDIATEK | > BTUSB_WIDEBAND_SPEECH | > BTUSB_VALID_LE_STATES }, > + { USB_DEVICE(0x13d3, 0x3608), .driver_info = BTUSB_MEDIATEK | > + BTUSB_WIDEBAND_SPEECH | > + BTUSB_VALID_LE_STATES }, > > /* Additional Realtek 8723AE Bluetooth devices */ > { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK }, Kind regards, Paul
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index acdba5d77694..fccefa57506a 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -696,6 +696,9 @@ static const struct usb_device_id quirks_table[] = { { USB_DEVICE(0x13d3, 0x3603), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH | BTUSB_VALID_LE_STATES }, + { USB_DEVICE(0x13d3, 0x3608), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH | + BTUSB_VALID_LE_STATES }, /* Additional Realtek 8723AE Bluetooth devices */ { USB_DEVICE(0x0930, 0x021d), .driver_info = BTUSB_REALTEK },
The VID/PID are as seen for this chipset in the Asus Zenbook S 16 (UM5606), and have been successfully tested with the mt7925e driver. Signed-off-by: Nuclear Sunshine <kernel-2024-q3@nuclearsunshine.com> --- drivers/bluetooth/btusb.c | 3 +++ 1 file changed, 3 insertions(+)