Message ID | 20250307113408.291310-1-kiran.k@intel.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | [v2] Bluetooth: btintel: Fix leading white space | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
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/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 | fail | TestRunner_mgmt-tester: Total: 490, Passed: 483 (98.6%), Failed: 3, Not Run: 4 |
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 |
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=941483 ---Test result--- Test Summary: CheckPatch PENDING 0.23 seconds GitLint PENDING 0.19 seconds SubjectPrefix PASS 0.35 seconds BuildKernel PASS 24.00 seconds CheckAllWarning PASS 26.41 seconds CheckSparse PASS 29.69 seconds BuildKernel32 PASS 23.58 seconds TestRunnerSetup PASS 426.65 seconds TestRunner_l2cap-tester PASS 21.02 seconds TestRunner_iso-tester PASS 35.29 seconds TestRunner_bnep-tester PASS 5.10 seconds TestRunner_mgmt-tester FAIL 120.86 seconds TestRunner_rfcomm-tester PASS 7.77 seconds TestRunner_sco-tester PASS 11.64 seconds TestRunner_ioctl-tester PASS 8.31 seconds TestRunner_mesh-tester PASS 5.97 seconds TestRunner_smp-tester PASS 7.15 seconds TestRunner_userchan-tester PASS 4.97 seconds IncrementalBuild PENDING 0.53 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: TestRunner_mgmt-tester - FAIL Desc: Run mgmt-tester with test-runner Output: Total: 490, Passed: 483 (98.6%), Failed: 3, Not Run: 4 Failed Test Cases LL Privacy - Add Device 2 (2 Devices to AL) Failed 0.166 seconds LL Privacy - Add Device 3 (AL is full) Failed 0.187 seconds LL Privacy - Start Discovery 1 (Disable RL) Failed 0.178 seconds ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
diff --git a/drivers/bluetooth/btintel.h b/drivers/bluetooth/btintel.h index 19530ea14905..dc43c27e360d 100644 --- a/drivers/bluetooth/btintel.h +++ b/drivers/bluetooth/btintel.h @@ -56,7 +56,7 @@ struct intel_tlv { #define BTINTEL_CNVI_BLAZARIW 0x901 #define BTINTEL_CNVI_GAP 0x910 #define BTINTEL_CNVI_BLAZARU 0x930 - #define BTINTEL_CNVI_SCP 0xA00 +#define BTINTEL_CNVI_SCP 0xA00 #define BTINTEL_IMG_BOOTLOADER 0x01 /* Bootloader image */ #define BTINTEL_IMG_IML 0x02 /* Intermediate image */ diff --git a/drivers/bluetooth/btintel_pcie.c b/drivers/bluetooth/btintel_pcie.c index f3ab5b41b050..eadbe4fedb61 100644 --- a/drivers/bluetooth/btintel_pcie.c +++ b/drivers/bluetooth/btintel_pcie.c @@ -49,7 +49,7 @@ MODULE_DEVICE_TABLE(pci, btintel_pcie_table); #define BTINTEL_PCIE_HCI_EVT_PKT 0x00000004 #define BTINTEL_PCIE_HCI_ISO_PKT 0x00000005 - #define BTINTEL_PCIE_MAGIC_NUM 0xA5A5A5A5 +#define BTINTEL_PCIE_MAGIC_NUM 0xA5A5A5A5 #define BTINTEL_PCIE_BLZR_HWEXP_SIZE 1024 #define BTINTEL_PCIE_BLZR_HWEXP_DMP_ADDR 0xB00A7C00
Remove the unwanted leading whitespace. Fixes: 00b3e258e1c0 ("Bluetooth: btintel_pcie: Setup buffers for firmware traces") Fixes: f5d8a90511b7 ("Bluetooth: btintel: Add DSBR support for ScP") Signed-off-by: Kiran K <kiran.k@intel.com> --- drivers/bluetooth/btintel.h | 2 +- drivers/bluetooth/btintel_pcie.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)