Message ID | 20230321043310.79085-1-chethan.tumkur.narayan@intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 5b23f8375a3685b93022feb625a2c4b43e5c0ad3 |
Headers | show |
Series | [v2] Bluetooth: btintel: Add LE States quirk support for Intel's new generation controllers | 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 (91>80): "[v2] Bluetooth: btintel: Add LE States quirk support for Intel's new generation controllers" |
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 | 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=732171 ---Test result--- Test Summary: CheckPatch PASS 0.66 seconds GitLint FAIL 0.62 seconds SubjectPrefix PASS 0.10 seconds BuildKernel PASS 34.89 seconds CheckAllWarning PASS 38.73 seconds CheckSparse PASS 42.81 seconds CheckSmatch PASS 115.16 seconds BuildKernel32 PASS 34.09 seconds TestRunnerSetup PASS 509.89 seconds TestRunner_l2cap-tester PASS 19.29 seconds TestRunner_iso-tester PASS 20.80 seconds TestRunner_bnep-tester PASS 6.50 seconds TestRunner_mgmt-tester PASS 130.52 seconds TestRunner_rfcomm-tester PASS 10.26 seconds TestRunner_sco-tester PASS 9.57 seconds TestRunner_ioctl-tester PASS 11.71 seconds TestRunner_mesh-tester PASS 8.51 seconds TestRunner_smp-tester PASS 9.45 seconds TestRunner_userchan-tester PASS 6.98 seconds IncrementalBuild PASS 34.50 seconds Details ############################## Test: GitLint - FAIL Desc: Run gitlint Output: [v2] Bluetooth: btintel: Add LE States quirk support for Intel's new generation controllers 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 (91>80): "[v2] Bluetooth: btintel: Add LE States quirk support for Intel's new generation controllers" --- 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 Tue, 21 Mar 2023 10:03:10 +0530 you wrote: > Basically all Intel controllers support both Central/Peripheral > LE states. > > This patch enables the LE States quirk by default on all > Solar and Magnertor Intel controllers. > > Signed-off-by: Chethan T N <chethan.tumkur.narayan@intel.com> > > [...] Here is the summary with links: - [v2] Bluetooth: btintel: Add LE States quirk support for Intel's new generation controllers https://git.kernel.org/bluetooth/bluetooth-next/c/5b23f8375a36 You are awesome, thank you!
diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c index af774688f1c0..7a6dc05553f1 100644 --- a/drivers/bluetooth/btintel.c +++ b/drivers/bluetooth/btintel.c @@ -2684,9 +2684,8 @@ static int btintel_setup_combined(struct hci_dev *hdev) */ set_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks); - /* Valid LE States quirk for GfP */ - if (INTEL_HW_VARIANT(ver_tlv.cnvi_bt) == 0x18) - set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks); + /* Apply LE States quirk from solar onwards */ + set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks); /* Setup MSFT Extension support */ btintel_set_msft_opcode(hdev,
Basically all Intel controllers support both Central/Peripheral LE states. This patch enables the LE States quirk by default on all Solar and Magnertor Intel controllers. Signed-off-by: Chethan T N <chethan.tumkur.narayan@intel.com> --- drivers/bluetooth/btintel.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)