linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] gpio: altera: kill bogus dependency on GPIO_GENERIC
@ 2015-06-19 11:31 Masahiro Yamada
  2015-06-19 11:31 ` [PATCH 2/2] gpio: mvebu: " Masahiro Yamada
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Masahiro Yamada @ 2015-06-19 11:31 UTC (permalink / raw)
  To: linux-gpio
  Cc: Masahiro Yamada, Linus Walleij, Alexandre Courbot, linux-kernel

The driver gpio-altera.c does not depend on gpio-generic.c at all.
Drop unneeded "select GPIO_GENERIC".

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

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

diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index caefe80..25c232e 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -113,7 +113,6 @@ config GPIO_74XX_MMIO
 config GPIO_ALTERA
 	tristate "Altera GPIO"
 	depends on OF_GPIO
-	select GPIO_GENERIC
 	select GPIOLIB_IRQCHIP
 	help
 	  Say Y or M here to build support for the Altera PIO device.
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at  http://www.tux.org/lkml/

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

* [PATCH 2/2] gpio: mvebu: kill bogus dependency on GPIO_GENERIC
  2015-06-19 11:31 [PATCH 1/2] gpio: altera: kill bogus dependency on GPIO_GENERIC Masahiro Yamada
@ 2015-06-19 11:31 ` Masahiro Yamada
  2015-06-20 23:54   ` Masahiro Yamada
  2015-07-15  9:47   ` Linus Walleij
  2015-06-20 23:48 ` [PATCH 1/2] gpio: altera: " Masahiro Yamada
  2015-07-15  8:26 ` Linus Walleij
  2 siblings, 2 replies; 8+ messages in thread
From: Masahiro Yamada @ 2015-06-19 11:31 UTC (permalink / raw)
  To: linux-gpio
  Cc: Masahiro Yamada, Linus Walleij, Alexandre Courbot, linux-kernel

The driver gpio-mvebu.c does not depend on gpio-generic.c at all.
Drop unneeded "select GPIO_GENERIC".

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

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

diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index 25c232e..241d441 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -283,7 +283,6 @@ config GPIO_MVEBU
 	def_bool y
 	depends on PLAT_ORION
 	depends on OF
-	select GPIO_GENERIC
 	select GENERIC_IRQ_CHIP
 
 config GPIO_MXC
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH 1/2] gpio: altera: kill bogus dependency on GPIO_GENERIC
  2015-06-19 11:31 [PATCH 1/2] gpio: altera: kill bogus dependency on GPIO_GENERIC Masahiro Yamada
  2015-06-19 11:31 ` [PATCH 2/2] gpio: mvebu: " Masahiro Yamada
@ 2015-06-20 23:48 ` Masahiro Yamada
  2015-06-26  3:15   ` Tien Hock Loh
  2015-07-15  8:26 ` Linus Walleij
  2 siblings, 1 reply; 8+ messages in thread
From: Masahiro Yamada @ 2015-06-20 23:48 UTC (permalink / raw)
  To: linux-gpio, Tien Hock Loh
  Cc: Masahiro Yamada, Linus Walleij, Alexandre Courbot,
	Linux Kernel Mailing List

Adding Tien.


2015-06-19 20:31 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
> The driver gpio-altera.c does not depend on gpio-generic.c at all.
> Drop unneeded "select GPIO_GENERIC".
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
>
>  drivers/gpio/Kconfig | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
> index caefe80..25c232e 100644
> --- a/drivers/gpio/Kconfig
> +++ b/drivers/gpio/Kconfig
> @@ -113,7 +113,6 @@ config GPIO_74XX_MMIO
>  config GPIO_ALTERA
>         tristate "Altera GPIO"
>         depends on OF_GPIO
> -       select GPIO_GENERIC
>         select GPIOLIB_IRQCHIP
>         help
>           Say Y or M here to build support for the Altera PIO device.
> --
> 1.9.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> Please read the FAQ at  http://www.tux.org/lkml/



-- 
Best Regards
Masahiro Yamada
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH 2/2] gpio: mvebu: kill bogus dependency on GPIO_GENERIC
  2015-06-19 11:31 ` [PATCH 2/2] gpio: mvebu: " Masahiro Yamada
@ 2015-06-20 23:54   ` Masahiro Yamada
  2015-06-29 12:25     ` Gregory CLEMENT
  2015-07-15  9:47   ` Linus Walleij
  1 sibling, 1 reply; 8+ messages in thread
From: Masahiro Yamada @ 2015-06-20 23:54 UTC (permalink / raw)
  To: linux-gpio, Arnd Bergmann, Thomas Petazzoni, Axel Lin,
	Gregory CLEMENT, Andrew Lunn
  Cc: Masahiro Yamada, Linus Walleij, Alexandre Courbot,
	Linux Kernel Mailing List

Adding more people.

I'd like them to check if this patch is correct.


2015-06-19 20:31 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
> The driver gpio-mvebu.c does not depend on gpio-generic.c at all.
> Drop unneeded "select GPIO_GENERIC".
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> ---
>
>  drivers/gpio/Kconfig | 1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
> index 25c232e..241d441 100644
> --- a/drivers/gpio/Kconfig
> +++ b/drivers/gpio/Kconfig
> @@ -283,7 +283,6 @@ config GPIO_MVEBU
>         def_bool y
>         depends on PLAT_ORION
>         depends on OF
> -       select GPIO_GENERIC
>         select GENERIC_IRQ_CHIP
>
>  config GPIO_MXC
> --
> 1.9.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> Please read the FAQ at  http://www.tux.org/lkml/



-- 
Best Regards
Masahiro Yamada
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [PATCH 1/2] gpio: altera: kill bogus dependency on GPIO_GENERIC
  2015-06-20 23:48 ` [PATCH 1/2] gpio: altera: " Masahiro Yamada
@ 2015-06-26  3:15   ` Tien Hock Loh
  0 siblings, 0 replies; 8+ messages in thread
From: Tien Hock Loh @ 2015-06-26  3:15 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: linux-gpio, Linus Walleij, Alexandre Courbot, Linux Kernel Mailing List

Acked-by: Tien Hock Loh <thloh@altera.com>

On Sun, 2015-06-21 at 08:48 +0900, Masahiro Yamada wrote:
> Adding Tien.
> 
> 
> 2015-06-19 20:31 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
> > The driver gpio-altera.c does not depend on gpio-generic.c at all.
> > Drop unneeded "select GPIO_GENERIC".
> >
> > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> > ---
> >
> >  drivers/gpio/Kconfig | 1 -
> >  1 file changed, 1 deletion(-)
> >
> > diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
> > index caefe80..25c232e 100644
> > --- a/drivers/gpio/Kconfig
> > +++ b/drivers/gpio/Kconfig
> > @@ -113,7 +113,6 @@ config GPIO_74XX_MMIO
> >  config GPIO_ALTERA
> >         tristate "Altera GPIO"
> >         depends on OF_GPIO
> > -       select GPIO_GENERIC
> >         select GPIOLIB_IRQCHIP
> >         help
> >           Say Y or M here to build support for the Altera PIO device.
> > --
> > 1.9.1
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> > Please read the FAQ at  http://www.tux.org/lkml/
> 
> 
> 


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

* Re: [PATCH 2/2] gpio: mvebu: kill bogus dependency on GPIO_GENERIC
  2015-06-20 23:54   ` Masahiro Yamada
@ 2015-06-29 12:25     ` Gregory CLEMENT
  0 siblings, 0 replies; 8+ messages in thread
From: Gregory CLEMENT @ 2015-06-29 12:25 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: linux-gpio, Arnd Bergmann, Thomas Petazzoni, Axel Lin,
	Andrew Lunn, Linus Walleij, Alexandre Courbot,
	Linux Kernel Mailing List

Hi Masahiro,

On 21/06/2015 01:54, Masahiro Yamada wrote:
> Adding more people.
> 
> I'd like them to check if this patch is correct.
> 
> 
> 2015-06-19 20:31 GMT+09:00 Masahiro Yamada <yamada.masahiro@socionext.com>:
>> The driver gpio-mvebu.c does not depend on gpio-generic.c at all.
>> Drop unneeded "select GPIO_GENERIC".
>>
>> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

This would have come from a wrong copy and paste, because indeed we
have never used the gpio-generic.

Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com>


Thanks,

Gregory

>> ---
>>
>>  drivers/gpio/Kconfig | 1 -
>>  1 file changed, 1 deletion(-)
>>
>> diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
>> index 25c232e..241d441 100644
>> --- a/drivers/gpio/Kconfig
>> +++ b/drivers/gpio/Kconfig
>> @@ -283,7 +283,6 @@ config GPIO_MVEBU
>>         def_bool y
>>         depends on PLAT_ORION
>>         depends on OF
>> -       select GPIO_GENERIC
>>         select GENERIC_IRQ_CHIP
>>
>>  config GPIO_MXC
>> --
>> 1.9.1
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
>> Please read the FAQ at  http://www.tux.org/lkml/
> 
> 
> 


-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* Re: [PATCH 1/2] gpio: altera: kill bogus dependency on GPIO_GENERIC
  2015-06-19 11:31 [PATCH 1/2] gpio: altera: kill bogus dependency on GPIO_GENERIC Masahiro Yamada
  2015-06-19 11:31 ` [PATCH 2/2] gpio: mvebu: " Masahiro Yamada
  2015-06-20 23:48 ` [PATCH 1/2] gpio: altera: " Masahiro Yamada
@ 2015-07-15  8:26 ` Linus Walleij
  2 siblings, 0 replies; 8+ messages in thread
From: Linus Walleij @ 2015-07-15  8:26 UTC (permalink / raw)
  To: Masahiro Yamada; +Cc: linux-gpio, Alexandre Courbot, linux-kernel

On Fri, Jun 19, 2015 at 1:31 PM, Masahiro Yamada
<yamada.masahiro@socionext.com> wrote:

> The driver gpio-altera.c does not depend on gpio-generic.c at all.
> Drop unneeded "select GPIO_GENERIC".
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Patch applied.

Yours,
Linus Walleij

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

* Re: [PATCH 2/2] gpio: mvebu: kill bogus dependency on GPIO_GENERIC
  2015-06-19 11:31 ` [PATCH 2/2] gpio: mvebu: " Masahiro Yamada
  2015-06-20 23:54   ` Masahiro Yamada
@ 2015-07-15  9:47   ` Linus Walleij
  1 sibling, 0 replies; 8+ messages in thread
From: Linus Walleij @ 2015-07-15  9:47 UTC (permalink / raw)
  To: Masahiro Yamada; +Cc: linux-gpio, Alexandre Courbot, linux-kernel

On Fri, Jun 19, 2015 at 1:31 PM, Masahiro Yamada
<yamada.masahiro@socionext.com> wrote:

> The driver gpio-mvebu.c does not depend on gpio-generic.c at all.
> Drop unneeded "select GPIO_GENERIC".
>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Patch applied with Gregory's ACK.

Yours,
Linus Walleij

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

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

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-19 11:31 [PATCH 1/2] gpio: altera: kill bogus dependency on GPIO_GENERIC Masahiro Yamada
2015-06-19 11:31 ` [PATCH 2/2] gpio: mvebu: " Masahiro Yamada
2015-06-20 23:54   ` Masahiro Yamada
2015-06-29 12:25     ` Gregory CLEMENT
2015-07-15  9:47   ` Linus Walleij
2015-06-20 23:48 ` [PATCH 1/2] gpio: altera: " Masahiro Yamada
2015-06-26  3:15   ` Tien Hock Loh
2015-07-15  8:26 ` 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).