aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2015-08-25 05:12:43 -0400
committerLinus Walleij <linus.walleij@linaro.org>2015-09-14 03:12:03 -0400
commitaad38b75fb632200eb64282469458d21ce2cc39a (patch)
treecee89a07e6280fcac21273c0ce0fd59e312e0dec
parent1bbc557d976b4e5ae9a41d619bd79f09ccac9afc (diff)
gpio: rcar: GPIO_RCAR doesn't relate to ARM
8cd1470("gpio: rcar: Add r8a7795 (R-Car H3) support") added GPIO support for r8a7795. r8a7795 based on CONFIG_ARM64. OTOH, GPIO_RCAR driver can be compiled fine on non-ARM. This patch removed ARM dependency for it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Simon Horman <horms+renesas@verge.net.au> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r--drivers/gpio/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index b4fc9e4d24c6..8949b3f6f74d 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -356,7 +356,7 @@ config GPIO_PXA
356 356
357config GPIO_RCAR 357config GPIO_RCAR
358 tristate "Renesas R-Car GPIO" 358 tristate "Renesas R-Car GPIO"
359 depends on ARM && (ARCH_SHMOBILE || COMPILE_TEST) 359 depends on ARCH_SHMOBILE || COMPILE_TEST
360 select GPIOLIB_IRQCHIP 360 select GPIOLIB_IRQCHIP
361 help 361 help
362 Say yes here to support GPIO on Renesas R-Car SoCs. 362 Say yes here to support GPIO on Renesas R-Car SoCs.