diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2022-07-11 10:36:35 +0200 |
---|---|---|
committer | Bartosz Golaszewski <brgl@bgdev.pl> | 2022-07-19 09:57:41 +0200 |
commit | b06d7b458a6eace1cebd0c1e4a235407824125e8 (patch) | |
tree | 1b2d3adfd6e575a94ae0da2107842276a88d65d2 /drivers/gpio | |
parent | gpio: gpiolib-of: Fix refcount bugs in of_mm_gpiochip_add_data() (diff) | |
download | linux-b06d7b458a6eace1cebd0c1e4a235407824125e8.tar.xz linux-b06d7b458a6eace1cebd0c1e4a235407824125e8.zip |
gpio: GPIO_SAMA5D2_PIOBU should depend on ARCH_AT91
The SAMA5D2 PIOBU is only present on some AT91/Microchip SoCs. Hence
add a dependency on ARCH_AT91, to prevent asking the user about this
driver when configuring a kernel without AT91/Microchip SoC support.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index b01961999ced..1d9316cecacd 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -544,6 +544,7 @@ config GPIO_SAMA5D2_PIOBU tristate "SAMA5D2 PIOBU GPIO support" depends on MFD_SYSCON depends on OF_GPIO + depends on ARCH_AT91 || COMPILE_TEST select GPIO_SYSCON help Say yes here to use the PIOBU pins as GPIOs. |