mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] gpio: rcar: GPIO_RCAR doesn't relate to ARM
@ 2015-08-25  9:12 Kuninori Morimoto
  2015-08-25  9:15 ` Geert Uytterhoeven
  2015-09-08  9:01 ` Linus Walleij
  0 siblings, 2 replies; 4+ messages in thread
From: Kuninori Morimoto @ 2015-08-25  9:12 UTC (permalink / raw)
  To: Simon, Linus Walleij, Geert Uytterhoeven
  Cc: Magnus, linux-sh, Alexandre Courbot, linux-gpio, linux-kernel

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

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>
---
This was "gpio: rcar: Enable r8a7795 for ARM64"

 drivers/gpio/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index b4fc9e4..8949b3f 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -356,7 +356,7 @@ config GPIO_PXA
 
 config GPIO_RCAR
 	tristate "Renesas R-Car GPIO"
-	depends on ARM && (ARCH_SHMOBILE || COMPILE_TEST)
+	depends on ARCH_SHMOBILE || COMPILE_TEST
 	select GPIOLIB_IRQCHIP
 	help
 	  Say yes here to support GPIO on Renesas R-Car SoCs.
-- 
1.9.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gpio: rcar: GPIO_RCAR doesn't relate to ARM
  2015-08-25  9:12 [PATCH] gpio: rcar: GPIO_RCAR doesn't relate to ARM Kuninori Morimoto
@ 2015-08-25  9:15 ` Geert Uytterhoeven
  2015-08-26  0:36   ` Simon Horman
  2015-09-08  9:01 ` Linus Walleij
  1 sibling, 1 reply; 4+ messages in thread
From: Geert Uytterhoeven @ 2015-08-25  9:15 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Simon, Linus Walleij, Magnus, Linux-sh list, Alexandre Courbot,
	linux-gpio, linux-kernel

On Tue, Aug 25, 2015 at 11:12 AM, Kuninori Morimoto
<kuninori.morimoto.gx@renesas.com> wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
>
> 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>

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gpio: rcar: GPIO_RCAR doesn't relate to ARM
  2015-08-25  9:15 ` Geert Uytterhoeven
@ 2015-08-26  0:36   ` Simon Horman
  0 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2015-08-26  0:36 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Kuninori Morimoto, Linus Walleij, Magnus, Linux-sh list,
	Alexandre Courbot, linux-gpio, linux-kernel

On Tue, Aug 25, 2015 at 11:15:18AM +0200, Geert Uytterhoeven wrote:
> On Tue, Aug 25, 2015 at 11:12 AM, Kuninori Morimoto
> <kuninori.morimoto.gx@renesas.com> wrote:
> > From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> >
> > 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>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] gpio: rcar: GPIO_RCAR doesn't relate to ARM
  2015-08-25  9:12 [PATCH] gpio: rcar: GPIO_RCAR doesn't relate to ARM Kuninori Morimoto
  2015-08-25  9:15 ` Geert Uytterhoeven
@ 2015-09-08  9:01 ` Linus Walleij
  1 sibling, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2015-09-08  9:01 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Simon, Geert Uytterhoeven, Magnus, linux-sh, Alexandre Courbot,
	linux-gpio, linux-kernel

On Tue, Aug 25, 2015 at 11:12 AM, Kuninori Morimoto
<kuninori.morimoto.gx@renesas.com> wrote:

> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
>
> 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>

Patch applied for fixes.

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-09-08  9:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-25  9:12 [PATCH] gpio: rcar: GPIO_RCAR doesn't relate to ARM Kuninori Morimoto
2015-08-25  9:15 ` Geert Uytterhoeven
2015-08-26  0:36   ` Simon Horman
2015-09-08  9:01 ` Linus Walleij

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®