]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
gpio: mxs: GPIO_MXS should not default to y unconditionally
authorGeert Uytterhoeven <geert+renesas@glider.be>
Mon, 8 Feb 2021 14:51:53 +0000 (15:51 +0100)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Wed, 10 Feb 2021 13:25:59 +0000 (14:25 +0100)
Merely enabling CONFIG_COMPILE_TEST should not enable additional code.
To fix this, restrict the automatic enabling of GPIO_MXS to ARCH_MXS,
and ask the user in case of compile-testing.

Fixes: 6876ca311bfca5d7 ("gpio: mxs: add COMPILE_TEST support for GPIO_MXS")
Cc: <stable@vger.kernel.org>
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
drivers/gpio/Kconfig

index dea65d85594fcceb84cb60c721714f5276904734..fa225175e68de04824105b298fec33af2fadbebb 100644 (file)
@@ -441,8 +441,9 @@ config GPIO_MXC
        select GENERIC_IRQ_CHIP
 
 config GPIO_MXS
-       def_bool y
+       bool "Freescale MXS GPIO support" if COMPILE_TEST
        depends on ARCH_MXS || COMPILE_TEST
+       default y if ARCH_MXS
        select GPIO_GENERIC
        select GENERIC_IRQ_CHIP