Message ID | 20230628121831.827171-1-kiran.k@intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 1c1fcdb51ed8154e605a21a86d9e84f64d69f338 |
Headers | show |
Series | [v2] Bluetooth: btintel: Add support for Gale Peak | 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=760925 ---Test result--- Test Summary: CheckPatch PASS 0.53 seconds GitLint PASS 0.23 seconds SubjectPrefix PASS 0.07 seconds BuildKernel PASS 36.48 seconds CheckAllWarning PASS 42.05 seconds CheckSparse PASS 47.77 seconds CheckSmatch PASS 119.50 seconds BuildKernel32 PASS 33.54 seconds TestRunnerSetup PASS 487.52 seconds TestRunner_l2cap-tester PASS 17.85 seconds TestRunner_iso-tester PASS 25.81 seconds TestRunner_bnep-tester PASS 5.78 seconds TestRunner_mgmt-tester PASS 146.29 seconds TestRunner_rfcomm-tester PASS 9.36 seconds TestRunner_sco-tester PASS 8.65 seconds TestRunner_ioctl-tester PASS 10.11 seconds TestRunner_mesh-tester PASS 8.00 seconds TestRunner_smp-tester PASS 9.51 seconds TestRunner_userchan-tester PASS 6.64 seconds IncrementalBuild PASS 32.61 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 Wed, 28 Jun 2023 17:48:31 +0530 you wrote: > Add hardware variant(0x1c) for Gale Peak core (CNVi). > > Signed-off-by: Kiran K <kiran.k@intel.com> > --- > changes in v2: > 1. Expand GaP to Gale Peak > 2. s/GalePeak/Gale Peak/g > > [...] Here is the summary with links: - [v2] Bluetooth: btintel: Add support for Gale Peak https://git.kernel.org/bluetooth/bluetooth-next/c/1c1fcdb51ed8 You are awesome, thank you!
diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c index dd1e48808ee2..b32277cb045d 100644 --- a/drivers/bluetooth/btintel.c +++ b/drivers/bluetooth/btintel.c @@ -480,6 +480,7 @@ static int btintel_version_info_tlv(struct hci_dev *hdev, case 0x18: /* Slr */ case 0x19: /* Slr-F */ case 0x1b: /* Mgr */ + case 0x1c: /* Gale Peak (GaP) */ break; default: bt_dev_err(hdev, "Unsupported Intel hardware variant (0x%x)", @@ -2648,6 +2649,7 @@ static void btintel_set_msft_opcode(struct hci_dev *hdev, u8 hw_variant) case 0x18: case 0x19: case 0x1b: + case 0x1c: hci_set_msft_opcode(hdev, 0xFC1E); break; default: @@ -2862,6 +2864,7 @@ static int btintel_setup_combined(struct hci_dev *hdev) case 0x18: case 0x19: case 0x1b: + case 0x1c: /* Display version information of TLV type */ btintel_version_info_tlv(hdev, &ver_tlv);
Add hardware variant(0x1c) for Gale Peak core (CNVi). Signed-off-by: Kiran K <kiran.k@intel.com> --- changes in v2: 1. Expand GaP to Gale Peak 2. s/GalePeak/Gale Peak/g drivers/bluetooth/btintel.c | 3 +++ 1 file changed, 3 insertions(+)