Message ID | 20210601190418.25628-1-Larry.Finger@lwfinger.net (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Bluetooth: Add a new USB ID for RTL8822CE | expand |
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=492029 ---Test result--- Test Summary: CheckPatch PASS 0.52 seconds GitLint PASS 0.12 seconds BuildKernel PASS 588.30 seconds TestRunner: Setup PASS 385.31 seconds TestRunner: l2cap-tester PASS 2.75 seconds TestRunner: bnep-tester PASS 2.01 seconds TestRunner: mgmt-tester PASS 28.21 seconds TestRunner: rfcomm-tester PASS 2.23 seconds TestRunner: sco-tester PASS 2.18 seconds TestRunner: smp-tester PASS 2.27 seconds TestRunner: userchan-tester PASS 2.03 seconds Details ############################## Test: CheckPatch - PASS - 0.52 seconds Run checkpatch.pl script with rule in .checkpatch.conf ############################## Test: GitLint - PASS - 0.12 seconds Run gitlint with rule in .gitlint ############################## Test: BuildKernel - PASS - 588.30 seconds Build Kernel with minimal configuration supports Bluetooth ############################## Test: TestRunner: Setup - PASS - 385.31 seconds Setup environment for running Test Runner ############################## Test: TestRunner: l2cap-tester - PASS - 2.75 seconds Run test-runner with l2cap-tester Total: 40, Passed: 40 (100.0%), Failed: 0, Not Run: 0 ############################## Test: TestRunner: bnep-tester - PASS - 2.01 seconds Run test-runner with bnep-tester Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0 ############################## Test: TestRunner: mgmt-tester - PASS - 28.21 seconds Run test-runner with mgmt-tester Total: 433, Passed: 418 (96.5%), Failed: 0, Not Run: 15 ############################## Test: TestRunner: rfcomm-tester - PASS - 2.23 seconds Run test-runner with rfcomm-tester Total: 9, Passed: 9 (100.0%), Failed: 0, Not Run: 0 ############################## Test: TestRunner: sco-tester - PASS - 2.18 seconds Run test-runner with sco-tester Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0 ############################## Test: TestRunner: smp-tester - PASS - 2.27 seconds Run test-runner with smp-tester Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0 ############################## Test: TestRunner: userchan-tester - PASS - 2.03 seconds Run test-runner with userchan-tester Total: 3, Passed: 3 (100.0%), Failed: 0, Not Run: 0 --- Regards, Linux Bluetooth
Hi Larry, > Some models of the RTL8822ce utilize a different USB ID. Add this > new one to the Bluetooth driver. > > Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> > --- > drivers/bluetooth/btusb.c | 2 ++ > 1 file changed, 2 insertions(+) patch has been applied to bluetooth-next tree. Regards Marcel
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 5d603ef39bad..7a8e1d240f15 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -388,6 +388,8 @@ static const struct usb_device_id blacklist_table[] = { /* Realtek 8822CE Bluetooth devices */ { USB_DEVICE(0x0bda, 0xb00c), .driver_info = BTUSB_REALTEK | BTUSB_WIDEBAND_SPEECH }, + { USB_DEVICE(0x0bda, 0xc822), .driver_info = BTUSB_REALTEK | + BTUSB_WIDEBAND_SPEECH }, /* Realtek 8852AE Bluetooth devices */ { USB_DEVICE(0x0bda, 0xc852), .driver_info = BTUSB_REALTEK |
Some models of the RTL8822ce utilize a different USB ID. Add this new one to the Bluetooth driver. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> --- drivers/bluetooth/btusb.c | 2 ++ 1 file changed, 2 insertions(+)