Message ID | 1654763558-20721-1-git-send-email-quic_zijuhu@quicinc.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2] Bluetooth: hci_sync: Fix set up CVSD SCO failure | 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 | PASS |
tedd_an/buildkernel | success | Build Kernel PASS |
tedd_an/buildkernel32 | success | Build Kernel32 PASS |
tedd_an/incremental_build | success | Pass |
tedd_an/testrunnersetup | success | Test Runner Setup PASS |
tedd_an/testrunnerl2cap-tester | success | Total: 40, Passed: 40 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerbnep-tester | success | Total: 1, Passed: 1 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnermgmt-tester | success | Total: 493, Passed: 493 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnerrfcomm-tester | success | Total: 10, Passed: 10 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersco-tester | success | Total: 12, Passed: 12 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunnersmp-tester | success | Total: 8, Passed: 8 (100.0%), Failed: 0, Not Run: 0 |
tedd_an/testrunneruserchan-tester | success | Total: 4, Passed: 4 (100.0%), Failed: 0, Not Run: 0 |
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=648751 ---Test result--- Test Summary: CheckPatch PASS 0.90 seconds GitLint PASS 0.47 seconds SubjectPrefix PASS 0.30 seconds BuildKernel PASS 36.73 seconds BuildKernel32 PASS 33.49 seconds Incremental Build with patchesPASS 46.01 seconds TestRunner: Setup PASS 551.49 seconds TestRunner: l2cap-tester PASS 19.15 seconds TestRunner: bnep-tester PASS 6.94 seconds TestRunner: mgmt-tester PASS 113.43 seconds TestRunner: rfcomm-tester PASS 10.77 seconds TestRunner: sco-tester PASS 10.46 seconds TestRunner: smp-tester PASS 10.58 seconds TestRunner: userchan-tester PASS 7.26 seconds --- Regards, Linux Bluetooth
Dear Zijun,
Thank you for the fixes. *setup* in the summary is a noun, so no space
there. In my reply to v1 I suggested:
> Bluetooth: Fix CVSD SCO setup failure
Kind regards,
Paul
On 6/9/2022 6:56 PM, Paul Menzel wrote: > Dear Zijun, > > > Thank you for the fixes. *setup* in the summary is a noun, so no space there. In my reply to v1 I suggested: > >> Bluetooth: Fix CVSD SCO setup failure thank you, i will correct it as your suggestion within v3 patch > > > Kind regards, > > Paul
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index 7829433d54c1..2627d5ac15d6 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -45,8 +45,8 @@ static const struct sco_param esco_param_cvsd[] = { { EDR_ESCO_MASK & ~ESCO_2EV3, 0x000a, 0x01 }, /* S3 */ { EDR_ESCO_MASK & ~ESCO_2EV3, 0x0007, 0x01 }, /* S2 */ { EDR_ESCO_MASK | ESCO_EV3, 0x0007, 0x01 }, /* S1 */ - { EDR_ESCO_MASK | ESCO_HV3, 0xffff, 0x01 }, /* D1 */ - { EDR_ESCO_MASK | ESCO_HV1, 0xffff, 0x01 }, /* D0 */ + { EDR_ESCO_MASK | ESCO_HV3, 0xffff, 0xff }, /* D1 */ + { EDR_ESCO_MASK | ESCO_HV1, 0xffff, 0xff }, /* D0 */ }; static const struct sco_param sco_param_cvsd[] = {