diff options
author | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2017-05-19 19:09:23 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-05-23 12:21:26 +0300 |
commit | 3b4c94bbacb06aa7ff595041efec82604e44fc59 (patch) | |
tree | 90775a1acf2114d1d4929ccd92d856e2ed69de57 /drivers/gpio/Kconfig | |
parent | 2233bf7a92e784f20d1a4a1d39438dcf51e75161 (diff) | |
download | linux-3b4c94bbacb06aa7ff595041efec82604e44fc59.tar.xz |
gpio: mvebu: allow building driver for Armada 7K/8K
The mvebu gpio driver can also be used on arm64 mvebu SoC such as the
Armada 7K/8K. This commit allows to build the driver for them (when only
ARCH_MVEBU is defined)
Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: Linus Walleij <linus.walleij@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 75e64607b209..805754401845 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -326,7 +326,7 @@ config GPIO_MPC8XXX config GPIO_MVEBU def_bool y - depends on PLAT_ORION + depends on PLAT_ORION || ARCH_MVEBU depends on OF_GPIO select GENERIC_IRQ_CHIP |