Message ID | 20240705102923.3512817-1-kiran.k@intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 1126250fa38b2db4ffff155d9c123b0a0313a6a4 |
Headers | show |
Series | [v1,1/2] Bluetooth: btintel: Add support for BlazarU core | 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 | 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=868747 ---Test result--- Test Summary: CheckPatch PASS 0.99 seconds GitLint PASS 0.44 seconds SubjectPrefix PASS 0.22 seconds BuildKernel PASS 29.40 seconds CheckAllWarning PASS 31.70 seconds CheckSparse PASS 37.64 seconds CheckSmatch PASS 102.21 seconds BuildKernel32 PASS 28.33 seconds TestRunnerSetup PASS 518.51 seconds TestRunner_l2cap-tester PASS 21.85 seconds TestRunner_iso-tester PASS 36.72 seconds TestRunner_bnep-tester PASS 4.77 seconds TestRunner_mgmt-tester PASS 108.34 seconds TestRunner_rfcomm-tester PASS 7.39 seconds TestRunner_sco-tester PASS 14.97 seconds TestRunner_ioctl-tester PASS 7.81 seconds TestRunner_mesh-tester PASS 7.87 seconds TestRunner_smp-tester PASS 6.83 seconds TestRunner_userchan-tester PASS 4.99 seconds IncrementalBuild PASS 32.68 seconds --- Regards, Linux Bluetooth
Hello: This series was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Fri, 5 Jul 2024 15:59:22 +0530 you wrote: > Add support for BlazarU core (CNVi). > > Signed-off-by: Kiran K <kiran.k@intel.com> > --- > drivers/bluetooth/btintel.c | 3 +++ > 1 file changed, 3 insertions(+) Here is the summary with links: - [v1,1/2] Bluetooth: btintel: Add support for BlazarU core https://git.kernel.org/bluetooth/bluetooth-next/c/1126250fa38b - [v1,2/2] Bluetooth: btintel: Add support for Whale Peak2 https://git.kernel.org/bluetooth/bluetooth-next/c/41473738be53 You are awesome, thank you!
diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c index 54bfe2ffe1d2..e7a612504ab1 100644 --- a/drivers/bluetooth/btintel.c +++ b/drivers/bluetooth/btintel.c @@ -472,6 +472,7 @@ int btintel_version_info_tlv(struct hci_dev *hdev, case 0x19: /* Slr-F */ case 0x1b: /* Mgr */ case 0x1c: /* Gale Peak (GaP) */ + case 0x1d: /* BlazarU (BzrU) */ case 0x1e: /* BlazarI (Bzr) */ break; default: @@ -2718,6 +2719,7 @@ void btintel_set_msft_opcode(struct hci_dev *hdev, u8 hw_variant) case 0x19: case 0x1b: case 0x1c: + case 0x1d: case 0x1e: hci_set_msft_opcode(hdev, 0xFC1E); break; @@ -3063,6 +3065,7 @@ static int btintel_setup_combined(struct hci_dev *hdev) case 0x17: case 0x19: case 0x1b: + case 0x1d: case 0x1e: /* Display version information of TLV type */ btintel_version_info_tlv(hdev, &ver_tlv);
Add support for BlazarU core (CNVi). Signed-off-by: Kiran K <kiran.k@intel.com> --- drivers/bluetooth/btintel.c | 3 +++ 1 file changed, 3 insertions(+)