Message ID | 20240805040131.450412-2-felix@kaechele.ca (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add support for QCA9379 hw1.0 SDIO WiFi/BT | 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 | fail | "Bluetooth: " prefix is not specified in the subject |
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 | fail | TestRunner_iso-tester: Total: 122, Passed: 117 (95.9%), Failed: 1, Not Run: 4 |
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=876576 ---Test result--- Test Summary: CheckPatch PASS 2.65 seconds GitLint PASS 0.80 seconds SubjectPrefix FAIL 0.55 seconds BuildKernel PASS 31.01 seconds CheckAllWarning PASS 33.17 seconds CheckSparse PASS 39.59 seconds CheckSmatch PASS 105.68 seconds BuildKernel32 PASS 29.97 seconds TestRunnerSetup PASS 540.58 seconds TestRunner_l2cap-tester PASS 20.32 seconds TestRunner_iso-tester FAIL 35.90 seconds TestRunner_bnep-tester PASS 5.01 seconds TestRunner_mgmt-tester PASS 111.73 seconds TestRunner_rfcomm-tester PASS 7.54 seconds TestRunner_sco-tester PASS 15.04 seconds TestRunner_ioctl-tester PASS 8.02 seconds TestRunner_mesh-tester PASS 6.03 seconds TestRunner_smp-tester PASS 6.98 seconds TestRunner_userchan-tester PASS 5.20 seconds IncrementalBuild PASS 44.82 seconds Details ############################## Test: SubjectPrefix - FAIL Desc: Check subject contains "Bluetooth" prefix Output: "Bluetooth: " prefix is not specified in the subject "Bluetooth: " prefix is not specified in the subject "Bluetooth: " prefix is not specified in the subject ############################## Test: TestRunner_iso-tester - FAIL Desc: Run iso-tester with test-runner Output: Total: 122, Passed: 117 (95.9%), Failed: 1, Not Run: 4 Failed Test Cases ISO Connect2 Suspend - Success Failed 4.246 seconds --- Regards, Linux Bluetooth
On Mon, 5 Aug 2024 at 06:01, Felix Kaechele <felix@kaechele.ca> wrote: > > Adds the id for Qualcomm QCA9379-3 SDIO based cards such as > the LITEON WCBN3510A and Silex SX-SDMAC2. > > Signed-off-by: Felix Kaechele <felix@kaechele.ca> Acked-by: Ulf Hansson <ulf.hansson@linaro.org> Kind regards Uffe > --- > include/linux/mmc/sdio_ids.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/mmc/sdio_ids.h b/include/linux/mmc/sdio_ids.h > index 7cddfdac2f57..63000a8f4b13 100644 > --- a/include/linux/mmc/sdio_ids.h > +++ b/include/linux/mmc/sdio_ids.h > @@ -52,6 +52,7 @@ > #define SDIO_DEVICE_ID_ATHEROS_AR6004_19 0x0419 > #define SDIO_DEVICE_ID_ATHEROS_AR6005 0x050A > #define SDIO_DEVICE_ID_ATHEROS_QCA9377 0x0701 > +#define SDIO_DEVICE_ID_ATHEROS_QCA9379 0x0801 > > #define SDIO_VENDOR_ID_BROADCOM 0x02d0 > #define SDIO_DEVICE_ID_BROADCOM_NINTENDO_WII 0x044b > -- > 2.45.2 >
diff --git a/include/linux/mmc/sdio_ids.h b/include/linux/mmc/sdio_ids.h index 7cddfdac2f57..63000a8f4b13 100644 --- a/include/linux/mmc/sdio_ids.h +++ b/include/linux/mmc/sdio_ids.h @@ -52,6 +52,7 @@ #define SDIO_DEVICE_ID_ATHEROS_AR6004_19 0x0419 #define SDIO_DEVICE_ID_ATHEROS_AR6005 0x050A #define SDIO_DEVICE_ID_ATHEROS_QCA9377 0x0701 +#define SDIO_DEVICE_ID_ATHEROS_QCA9379 0x0801 #define SDIO_VENDOR_ID_BROADCOM 0x02d0 #define SDIO_DEVICE_ID_BROADCOM_NINTENDO_WII 0x044b
Adds the id for Qualcomm QCA9379-3 SDIO based cards such as the LITEON WCBN3510A and Silex SX-SDMAC2. Signed-off-by: Felix Kaechele <felix@kaechele.ca> --- include/linux/mmc/sdio_ids.h | 1 + 1 file changed, 1 insertion(+)