diff options
author | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2024-09-30 11:11:10 +0200 |
---|---|---|
committer | Bartosz Golaszewski <bartosz.golaszewski@linaro.org> | 2024-10-08 10:08:51 +0200 |
commit | 956ee0c5c969c9caf6744e166f5a80526be10c5b (patch) | |
tree | 4291d24a67a4372b09c790c4387144ff2974a8c4 /drivers/gpio/Kconfig | |
parent | 22dec5aa596ef805cccbcd3fbe5ebffbcb4fa559 (diff) | |
download | lwn-956ee0c5c969c9caf6744e166f5a80526be10c5b.tar.gz lwn-956ee0c5c969c9caf6744e166f5a80526be10c5b.zip |
gpio: mvebu: allow building the module with COMPILE_TEST=y
Make it possible to build the module when COMPILE_TEST is enabled for
better build coverage.
Link: https://lore.kernel.org/r/20240930091111.32010-1-brgl@bgdev.pl
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Diffstat (limited to 'drivers/gpio/Kconfig')
-rw-r--r-- | drivers/gpio/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index d93cd4f722b4..98722e814e81 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -487,7 +487,7 @@ config GPIO_MT7621 config GPIO_MVEBU def_bool y - depends on PLAT_ORION || ARCH_MVEBU + depends on PLAT_ORION || ARCH_MVEBU || COMPILE_TEST depends on OF_GPIO select GENERIC_IRQ_CHIP select REGMAP_MMIO |