Message ID | 20250127105001.587610-2-u.kleine-koenig@baylibre.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | pwm: Strengthen dependency for PWM_SIFIVE | expand |
Context | Check | Description |
---|---|---|
conchuod/vmtest-for-next-PR | success | PR summary |
conchuod/patch-1-test-1 | success | .github/scripts/patches/tests/build_rv32_defconfig.sh took 120.44s |
conchuod/patch-1-test-2 | success | .github/scripts/patches/tests/build_rv64_clang_allmodconfig.sh took 1077.01s |
conchuod/patch-1-test-3 | success | .github/scripts/patches/tests/build_rv64_gcc_allmodconfig.sh took 1310.94s |
conchuod/patch-1-test-4 | success | .github/scripts/patches/tests/build_rv64_nommu_k210_defconfig.sh took 21.11s |
conchuod/patch-1-test-5 | success | .github/scripts/patches/tests/build_rv64_nommu_virt_defconfig.sh took 23.19s |
conchuod/patch-1-test-6 | success | .github/scripts/patches/tests/checkpatch.sh took 0.42s |
conchuod/patch-1-test-7 | success | .github/scripts/patches/tests/dtb_warn_rv64.sh took 42.86s |
conchuod/patch-1-test-8 | success | .github/scripts/patches/tests/header_inline.sh took 0.01s |
conchuod/patch-1-test-9 | success | .github/scripts/patches/tests/kdoc.sh took 0.59s |
conchuod/patch-1-test-10 | success | .github/scripts/patches/tests/module_param.sh took 0.02s |
conchuod/patch-1-test-11 | success | .github/scripts/patches/tests/verify_fixes.sh took 0.00s |
conchuod/patch-1-test-12 | success | .github/scripts/patches/tests/verify_signedoff.sh took 0.05s |
bjorn/build-rv32-defconfig | success | build-rv32-defconfig |
bjorn/build-rv64-clang-allmodconfig | success | build-rv64-clang-allmodconfig |
bjorn/build-rv64-gcc-allmodconfig | success | build-rv64-gcc-allmodconfig |
bjorn/build-rv64-nommu-k210-defconfig | success | build-rv64-nommu-k210-defconfig |
bjorn/build-rv64-nommu-k210-virt | success | build-rv64-nommu-k210-virt |
bjorn/checkpatch | success | checkpatch |
bjorn/dtb-warn-rv64 | success | dtb-warn-rv64 |
bjorn/header-inline | success | header-inline |
bjorn/kdoc | success | kdoc |
bjorn/module-param | success | module-param |
bjorn/verify-fixes | success | verify-fixes |
bjorn/verify-signedoff | success | verify-signedoff |
diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig index 0915c1e7df16..be0db73003e4 100644 --- a/drivers/pwm/Kconfig +++ b/drivers/pwm/Kconfig @@ -567,7 +567,7 @@ config PWM_SIFIVE tristate "SiFive PWM support" depends on OF depends on COMMON_CLK && HAS_IOMEM - depends on RISCV || COMPILE_TEST + depends on ARCH_SIFIVE || COMPILE_TEST help Generic PWM framework driver for SiFive SoCs.
Back when the sifive pwm driver was added there was no symbol for sifive SoCs yet. Today there is ARCH_SIFIVE however. Let PWM_SIFIVE depend on that to ensure the driver is only build for platforms where there is a chance that the hardware is available. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com> --- Hello, a quick grep suggests that the driver is only used on machines that include arch/riscv/boot/dts/sifive/fu540-c000.dtsi or arch/riscv/boot/dts/sifive/fu740-c000.dtsi and for these ARCH_SIFIVE is enabled. So I'd guess this patch is fine. Still an ack from someone who knows this arch better would be very welcome. Best regards Uwe drivers/pwm/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)