linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gpio: xilinx: Drop architecture dependencies
@ 2015-10-19 17:42 Soren Brinkmann
  2015-10-19 17:52 ` Moritz Fischer
  2015-10-23  4:51 ` [PATCH v2] " Soren Brinkmann
  0 siblings, 2 replies; 4+ messages in thread
From: Soren Brinkmann @ 2015-10-19 17:42 UTC (permalink / raw)
  To: Linus Walleij, Alexandre Courbot
  Cc: linux-kernel, linux-gpio, Zubair Lutfullah Kakakhel,
	Moritz Fischer, Lars-Peter Clausen, Soren Brinkmann

The driver does not have any real architecture dependencies. To avoid
listing each architecture that might use this driver on some
FPGA-enabled platform, drop these dependencies.

Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
---
 drivers/gpio/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index 63000b1f9da8..45dfeef6018f 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -506,7 +506,7 @@ config GPIO_XGENE_SB
 
 config GPIO_XILINX
 	tristate "Xilinx GPIO support"
-	depends on OF_GPIO && (PPC || MICROBLAZE || ARCH_ZYNQ || X86)
+	depends on OF_GPIO
 	help
 	  Say yes here to support the Xilinx FPGA GPIO device
 
-- 
2.6.2.3.ga463a5b

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

* Re: [PATCH] gpio: xilinx: Drop architecture dependencies
  2015-10-19 17:42 [PATCH] gpio: xilinx: Drop architecture dependencies Soren Brinkmann
@ 2015-10-19 17:52 ` Moritz Fischer
  2015-10-23  4:51 ` [PATCH v2] " Soren Brinkmann
  1 sibling, 0 replies; 4+ messages in thread
From: Moritz Fischer @ 2015-10-19 17:52 UTC (permalink / raw)
  To: Soren Brinkmann
  Cc: Linus Walleij, Alexandre Courbot, linux-kernel, linux-gpio,
	Zubair Lutfullah Kakakhel, Lars-Peter Clausen

Acked-by: Moritz Fischer <moritz.fischer@ettus.com>

On Mon, Oct 19, 2015 at 10:42 AM, Soren Brinkmann
<soren.brinkmann@xilinx.com> wrote:
> The driver does not have any real architecture dependencies. To avoid
> listing each architecture that might use this driver on some
> FPGA-enabled platform, drop these dependencies.
>
> Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
> ---
>  drivers/gpio/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
> index 63000b1f9da8..45dfeef6018f 100644
> --- a/drivers/gpio/Kconfig
> +++ b/drivers/gpio/Kconfig
> @@ -506,7 +506,7 @@ config GPIO_XGENE_SB
>
>  config GPIO_XILINX
>         tristate "Xilinx GPIO support"
> -       depends on OF_GPIO && (PPC || MICROBLAZE || ARCH_ZYNQ || X86)
> +       depends on OF_GPIO
>         help
>           Say yes here to support the Xilinx FPGA GPIO device
>
> --
> 2.6.2.3.ga463a5b
>

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

* [PATCH v2] gpio: xilinx: Drop architecture dependencies
  2015-10-19 17:42 [PATCH] gpio: xilinx: Drop architecture dependencies Soren Brinkmann
  2015-10-19 17:52 ` Moritz Fischer
@ 2015-10-23  4:51 ` Soren Brinkmann
  2015-10-27 15:47   ` Linus Walleij
  1 sibling, 1 reply; 4+ messages in thread
From: Soren Brinkmann @ 2015-10-23  4:51 UTC (permalink / raw)
  To: Linus Walleij, Alexandre Courbot
  Cc: linux-kernel, linux-gpio, Zubair Lutfullah Kakakhel,
	Moritz Fischer, Lars-Peter Clausen, Soren Brinkmann

The driver does not have any real architecture dependencies. To avoid
listing each architecture that might use this driver on some
FPGA-enabled platform, drop these dependencies.

Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
Acked-by: Moritz Fischer <moritz.fischer@ettus.com>
---
v2:
 - rebased
---
 drivers/gpio/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index 597b8d4ab74f..45dfeef6018f 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -506,7 +506,7 @@ config GPIO_XGENE_SB
 
 config GPIO_XILINX
 	tristate "Xilinx GPIO support"
-	depends on OF_GPIO && (PPC || MICROBLAZE || ARCH_ZYNQ || X86 || MIPS)
+	depends on OF_GPIO
 	help
 	  Say yes here to support the Xilinx FPGA GPIO device
 
-- 
2.6.2.3.ga463a5b

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

* Re: [PATCH v2] gpio: xilinx: Drop architecture dependencies
  2015-10-23  4:51 ` [PATCH v2] " Soren Brinkmann
@ 2015-10-27 15:47   ` Linus Walleij
  0 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2015-10-27 15:47 UTC (permalink / raw)
  To: Soren Brinkmann
  Cc: Alexandre Courbot, linux-kernel@vger.kernel.org,
	linux-gpio@vger.kernel.org, Zubair Lutfullah Kakakhel,
	Moritz Fischer, Lars-Peter Clausen

On Fri, Oct 23, 2015 at 6:51 AM, Soren Brinkmann
<soren.brinkmann@xilinx.com> wrote:

> The driver does not have any real architecture dependencies. To avoid
> listing each architecture that might use this driver on some
> FPGA-enabled platform, drop these dependencies.
>
> Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com>
> Acked-by: Moritz Fischer <moritz.fischer@ettus.com>
> ---
> v2:
>  - rebased

Patch applied.

Yours,
Linus Walleij

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

end of thread, other threads:[~2015-10-27 15:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-19 17:42 [PATCH] gpio: xilinx: Drop architecture dependencies Soren Brinkmann
2015-10-19 17:52 ` Moritz Fischer
2015-10-23  4:51 ` [PATCH v2] " Soren Brinkmann
2015-10-27 15:47   ` Linus Walleij

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).