Message ID | 1654772596-10019-1-git-send-email-quic_zijuhu@quicinc.com |
---|---|
State | Superseded |
Headers | show |
Series | [v1] Bluetooth: Fix CVSD SCO setup failure | 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=648803 ---Test result--- Test Summary: CheckPatch PASS 0.83 seconds GitLint PASS 0.41 seconds SubjectPrefix PASS 0.30 seconds BuildKernel PASS 34.73 seconds BuildKernel32 PASS 33.51 seconds Incremental Build with patchesPASS 43.15 seconds TestRunner: Setup PASS 543.61 seconds TestRunner: l2cap-tester PASS 19.00 seconds TestRunner: bnep-tester PASS 6.61 seconds TestRunner: mgmt-tester PASS 114.47 seconds TestRunner: rfcomm-tester PASS 10.30 seconds TestRunner: sco-tester PASS 10.04 seconds TestRunner: smp-tester PASS 10.00 seconds TestRunner: userchan-tester PASS 6.76 seconds --- Regards, Linux Bluetooth
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[] = {