Message ID | 1699250566-17101-1-git-send-email-quic_zijuhu@quicinc.com (mailing list archive) |
---|---|
State | Accepted |
Commit | d5742377e3ac807f1879bb6d8571c8787622a37d |
Headers | show |
Series | [v2,1/1] Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066 | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | fail | WARNING: I3 - ignore-body-lines: gitlint will be switching from using Python regex 'match' (match beginning) to 'search' (match anywhere) semantics. Please review your ignore-body-lines.regex option accordingly. To remove this warning, set general.regex-style-search=True. More details: https://jorisroovers.github.io/gitlint/configuration/#regex-style-search 1: T1 Title exceeds max length (82>80): "[v2,1/1] Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066" |
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 | fail | TestRunner_mesh-tester: Total: 10, Passed: 9 (90.0%), Failed: 1, Not Run: 0 |
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=798977 ---Test result--- Test Summary: CheckPatch PASS 0.43 seconds GitLint FAIL 0.52 seconds SubjectPrefix PASS 0.06 seconds BuildKernel PASS 27.70 seconds CheckAllWarning PASS 30.26 seconds CheckSparse PASS 35.53 seconds CheckSmatch PASS 99.02 seconds BuildKernel32 PASS 27.56 seconds TestRunnerSetup PASS 422.34 seconds TestRunner_l2cap-tester PASS 23.17 seconds TestRunner_iso-tester PASS 38.96 seconds TestRunner_bnep-tester PASS 6.93 seconds TestRunner_mgmt-tester PASS 166.49 seconds TestRunner_rfcomm-tester PASS 11.01 seconds TestRunner_sco-tester PASS 14.47 seconds TestRunner_ioctl-tester PASS 12.22 seconds TestRunner_mesh-tester FAIL 9.27 seconds TestRunner_smp-tester PASS 9.74 seconds TestRunner_userchan-tester PASS 7.90 seconds IncrementalBuild PASS 26.15 seconds Details ############################## Test: GitLint - FAIL Desc: Run gitlint Output: [v2,1/1] Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066 WARNING: I3 - ignore-body-lines: gitlint will be switching from using Python regex 'match' (match beginning) to 'search' (match anywhere) semantics. Please review your ignore-body-lines.regex option accordingly. To remove this warning, set general.regex-style-search=True. More details: https://jorisroovers.github.io/gitlint/configuration/#regex-style-search 1: T1 Title exceeds max length (82>80): "[v2,1/1] Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066" ############################## Test: TestRunner_mesh-tester - FAIL Desc: Run mesh-tester with test-runner Output: Total: 10, Passed: 9 (90.0%), Failed: 1, Not Run: 0 Failed Test Cases Mesh - Send cancel - 2 Failed 0.197 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 Mon, 6 Nov 2023 14:02:46 +0800 you wrote: > Set both WIDEBAND_SPEECH_SUPPORTED and VALID_LE_STATES quirks > for QCA2066. > > Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com> > --- > drivers/bluetooth/hci_qca.c | 1 + > 1 file changed, 1 insertion(+) Here is the summary with links: - [v2,1/1] Bluetooth: qca: Set both WIDEBAND_SPEECH and LE_STATES quirks for QCA2066 https://git.kernel.org/bluetooth/bluetooth-next/c/d5742377e3ac You are awesome, thank you!
diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c index 067e248e3599..35f74f209d1f 100644 --- a/drivers/bluetooth/hci_qca.c +++ b/drivers/bluetooth/hci_qca.c @@ -2039,6 +2039,7 @@ static const struct qca_device_data qca_soc_data_wcn3998 __maybe_unused = { static const struct qca_device_data qca_soc_data_qca2066 __maybe_unused = { .soc_type = QCA_QCA2066, .num_vregs = 0, + .capabilities = QCA_CAP_WIDEBAND_SPEECH | QCA_CAP_VALID_LE_STATES, }; static const struct qca_device_data qca_soc_data_qca6390 __maybe_unused = {
Set both WIDEBAND_SPEECH_SUPPORTED and VALID_LE_STATES quirks for QCA2066. Signed-off-by: Zijun Hu <quic_zijuhu@quicinc.com> --- drivers/bluetooth/hci_qca.c | 1 + 1 file changed, 1 insertion(+)