Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

reset: zynqmp: allow building under COMPILE_TEST

The ZynqMP reset driver can be compiled without ARCH_ZYNQMP being
enabled. Allow it to be built under COMPILE_TEST.

Acked-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/20240621-reset-compile-zynqmp-v1-1-ede43ab18101@pengutronix.de
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>

+7 -1
+6
drivers/reset/Kconfig
··· 335 335 help 336 336 This enables the reset controller driver for Xilinx Zynq SoCs. 337 337 338 + config RESET_ZYNQMP 339 + bool "ZYNQMP Reset Driver" if COMPILE_TEST 340 + default ARCH_ZYNQMP 341 + help 342 + This enables the reset controller driver for Xilinx ZynqMP SoCs. 343 + 338 344 source "drivers/reset/starfive/Kconfig" 339 345 source "drivers/reset/sti/Kconfig" 340 346 source "drivers/reset/hisilicon/Kconfig"
+1 -1
drivers/reset/Makefile
··· 42 42 obj-$(CONFIG_RESET_UNIPHIER) += reset-uniphier.o 43 43 obj-$(CONFIG_RESET_UNIPHIER_GLUE) += reset-uniphier-glue.o 44 44 obj-$(CONFIG_RESET_ZYNQ) += reset-zynq.o 45 - obj-$(CONFIG_ARCH_ZYNQMP) += reset-zynqmp.o 45 + obj-$(CONFIG_RESET_ZYNQMP) += reset-zynqmp.o