Message ID | 20230624170810.298776-1-ruinairas1992@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 6d5475f4a29c446da6104c4f9ceed9f5ffbf0da5 |
Headers | show |
Series | Bluetooth: btusb: Add MT7922 bluetooth ID for the Asus Ally | 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 | fail | TestRunner_iso-tester: Total: 80, Passed: 76 (95.0%), Failed: 4, Not Run: 0 |
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=759995 ---Test result--- Test Summary: CheckPatch PASS 0.74 seconds GitLint PASS 0.37 seconds SubjectPrefix PASS 0.14 seconds BuildKernel PASS 33.88 seconds CheckAllWarning PASS 37.06 seconds CheckSparse PASS 42.21 seconds CheckSmatch PASS 113.68 seconds BuildKernel32 PASS 32.91 seconds TestRunnerSetup PASS 468.69 seconds TestRunner_l2cap-tester PASS 17.78 seconds TestRunner_iso-tester FAIL 25.51 seconds TestRunner_bnep-tester PASS 5.99 seconds TestRunner_mgmt-tester PASS 137.48 seconds TestRunner_rfcomm-tester PASS 9.45 seconds TestRunner_sco-tester PASS 8.57 seconds TestRunner_ioctl-tester PASS 9.98 seconds TestRunner_mesh-tester PASS 7.39 seconds TestRunner_smp-tester PASS 8.50 seconds TestRunner_userchan-tester PASS 6.08 seconds IncrementalBuild PASS 29.80 seconds Details ############################## Test: TestRunner_iso-tester - FAIL Desc: Run iso-tester with test-runner Output: Total: 80, Passed: 76 (95.0%), Failed: 4, Not Run: 0 Failed Test Cases ISO Receive - Success Failed 0.212 seconds ISO Receive Timestamped - Success Failed 0.203 seconds ISO Defer Receive - Success Failed 0.203 seconds ISO 48_2_1 Defer Receive - Success Failed 0.202 seconds --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Sat, 24 Jun 2023 12:08:10 -0500 you wrote: > Adding the device ID from the Asus Ally gets the bluetooth working > on the device. > > Signed-off-by: Matthew Anderson <ruinairas1992@gmail.com> > --- > drivers/bluetooth/btusb.c | 3 +++ > 1 file changed, 3 insertions(+) Here is the summary with links: - Bluetooth: btusb: Add MT7922 bluetooth ID for the Asus Ally https://git.kernel.org/bluetooth/bluetooth-next/c/6d5475f4a29c You are awesome, thank you!
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 2a8e2bb038f5..7427da184fe0 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -613,6 +613,9 @@ static const struct usb_device_id blacklist_table[] = { { USB_DEVICE(0x0489, 0xe0d9), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH | BTUSB_VALID_LE_STATES }, + { USB_DEVICE(0x0489, 0xe0f5), .driver_info = BTUSB_MEDIATEK | + BTUSB_WIDEBAND_SPEECH | + BTUSB_VALID_LE_STATES }, { USB_DEVICE(0x13d3, 0x3568), .driver_info = BTUSB_MEDIATEK | BTUSB_WIDEBAND_SPEECH | BTUSB_VALID_LE_STATES },
Adding the device ID from the Asus Ally gets the bluetooth working on the device. Signed-off-by: Matthew Anderson <ruinairas1992@gmail.com> --- drivers/bluetooth/btusb.c | 3 +++ 1 file changed, 3 insertions(+)