linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check
@ 2015-04-28 10:14 Geert Uytterhoeven
  2015-04-30  5:49 ` Simon Horman
  2015-05-12  7:26 ` Linus Walleij
  0 siblings, 2 replies; 9+ messages in thread
From: Geert Uytterhoeven @ 2015-04-28 10:14 UTC (permalink / raw)
  To: Laurent Pinchart, Linus Walleij; +Cc: linux-sh, linux-gpio, Geert Uytterhoeven

As of commit 9d07d414d4c33d86 ("ARM: shmobile: r8a73a4: ape6evm: Remove
legacy platform"), r8a73a4 is only supported in generic ARM
multi-platform builds.  Hence CONFIG_ARCH_MULTIPLATFORM is always set,
and the check can be removed.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
This depends on Simon's branch r8a73a4-ccf-and-multiplatform-for-v4.1
---
 drivers/pinctrl/sh-pfc/pfc-r8a73a4.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c b/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
index 280a56f977860272..ba18d2e65e674563 100644
--- a/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
+++ b/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
@@ -21,10 +21,6 @@
 #include <linux/kernel.h>
 #include <linux/pinctrl/pinconf-generic.h>
 
-#ifndef CONFIG_ARCH_MULTIPLATFORM
-#include <mach/irqs.h>
-#endif
-
 #include "core.h"
 #include "sh_pfc.h"
 
-- 
1.9.1


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

* [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check
@ 2015-04-28 10:15 Geert Uytterhoeven
  2015-04-29 11:53 ` Laurent Pinchart
  2015-05-12 10:29 ` Linus Walleij
  0 siblings, 2 replies; 9+ messages in thread
From: Geert Uytterhoeven @ 2015-04-28 10:15 UTC (permalink / raw)
  To: Laurent Pinchart, Linus Walleij; +Cc: linux-sh, linux-gpio, Geert Uytterhoeven

As of commit 9d07d414d4c33d86 ("ARM: shmobile: r8a73a4: ape6evm: Remove
legacy platform"), r8a73a4 is only supported in generic ARM
multi-platform builds.  Hence CONFIG_ARCH_MULTIPLATFORM is always set,
and the check can be removed.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/pinctrl/sh-pfc/pfc-r8a73a4.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c b/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
index 280a56f977860272..ba18d2e65e674563 100644
--- a/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
+++ b/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
@@ -21,10 +21,6 @@
 #include <linux/kernel.h>
 #include <linux/pinctrl/pinconf-generic.h>
 
-#ifndef CONFIG_ARCH_MULTIPLATFORM
-#include <mach/irqs.h>
-#endif
-
 #include "core.h"
 #include "sh_pfc.h"
 
-- 
1.9.1


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

* Re: [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check
  2015-04-28 10:15 Geert Uytterhoeven
@ 2015-04-29 11:53 ` Laurent Pinchart
  2015-05-12 10:29 ` Linus Walleij
  1 sibling, 0 replies; 9+ messages in thread
From: Laurent Pinchart @ 2015-04-29 11:53 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Linus Walleij, linux-sh, linux-gpio

Hi Geert,

Thank you for the patch.

On Tuesday 28 April 2015 12:15:06 Geert Uytterhoeven wrote:
> As of commit 9d07d414d4c33d86 ("ARM: shmobile: r8a73a4: ape6evm: Remove
> legacy platform"), r8a73a4 is only supported in generic ARM
> multi-platform builds.  Hence CONFIG_ARCH_MULTIPLATFORM is always set,
> and the check can be removed.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  drivers/pinctrl/sh-pfc/pfc-r8a73a4.c | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
> b/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c index
> 280a56f977860272..ba18d2e65e674563 100644
> --- a/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
> +++ b/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
> @@ -21,10 +21,6 @@
>  #include <linux/kernel.h>
>  #include <linux/pinctrl/pinconf-generic.h>
> 
> -#ifndef CONFIG_ARCH_MULTIPLATFORM
> -#include <mach/irqs.h>
> -#endif
> -
>  #include "core.h"
>  #include "sh_pfc.h"

-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check
  2015-04-28 10:14 [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check Geert Uytterhoeven
@ 2015-04-30  5:49 ` Simon Horman
  2015-05-12  7:26 ` Linus Walleij
  1 sibling, 0 replies; 9+ messages in thread
From: Simon Horman @ 2015-04-30  5:49 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Laurent Pinchart, Linus Walleij, linux-sh, linux-gpio

On Tue, Apr 28, 2015 at 12:14:31PM +0200, Geert Uytterhoeven wrote:
> As of commit 9d07d414d4c33d86 ("ARM: shmobile: r8a73a4: ape6evm: Remove
> legacy platform"), r8a73a4 is only supported in generic ARM
> multi-platform builds.  Hence CONFIG_ARCH_MULTIPLATFORM is always set,
> and the check can be removed.
> 
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> This depends on Simon's branch r8a73a4-ccf-and-multiplatform-for-v4.1

Which was tagged as renesas-r8a73a4-ccf-and-multiplatform-for-v4.1 and
is present in v4.0-rc1.

Acked-by: Simon Horman <horms+renesas@verge.net.au>

> ---
>  drivers/pinctrl/sh-pfc/pfc-r8a73a4.c | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c b/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
> index 280a56f977860272..ba18d2e65e674563 100644
> --- a/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
> +++ b/drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
> @@ -21,10 +21,6 @@
>  #include <linux/kernel.h>
>  #include <linux/pinctrl/pinconf-generic.h>
>  
> -#ifndef CONFIG_ARCH_MULTIPLATFORM
> -#include <mach/irqs.h>
> -#endif
> -
>  #include "core.h"
>  #include "sh_pfc.h"
>  
> -- 
> 1.9.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* Re: [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check
  2015-04-28 10:14 [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check Geert Uytterhoeven
  2015-04-30  5:49 ` Simon Horman
@ 2015-05-12  7:26 ` Linus Walleij
  2015-05-12  7:45   ` Geert Uytterhoeven
  2015-05-14  0:49   ` Simon Horman
  1 sibling, 2 replies; 9+ messages in thread
From: Linus Walleij @ 2015-05-12  7:26 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Laurent Pinchart, linux-sh@vger.kernel.org,
	linux-gpio@vger.kernel.org

On Tue, Apr 28, 2015 at 12:14 PM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

> As of commit 9d07d414d4c33d86 ("ARM: shmobile: r8a73a4: ape6evm: Remove
> legacy platform"), r8a73a4 is only supported in generic ARM
> multi-platform builds.  Hence CONFIG_ARCH_MULTIPLATFORM is always set,
> and the check can be removed.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> This depends on Simon's branch r8a73a4-ccf-and-multiplatform-for-v4.1

I guess I can't merge it to pinctrl then and Simon will take it?

Acked-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij

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

* Re: [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check
  2015-05-12  7:26 ` Linus Walleij
@ 2015-05-12  7:45   ` Geert Uytterhoeven
  2015-05-14  0:49   ` Simon Horman
  1 sibling, 0 replies; 9+ messages in thread
From: Geert Uytterhoeven @ 2015-05-12  7:45 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Geert Uytterhoeven, Laurent Pinchart, linux-sh@vger.kernel.org,
	linux-gpio@vger.kernel.org

On Tue, May 12, 2015 at 9:26 AM, Linus Walleij <linus.walleij@linaro.org> wrote:
> On Tue, Apr 28, 2015 at 12:14 PM, Geert Uytterhoeven
> <geert+renesas@glider.be> wrote:
>
>> As of commit 9d07d414d4c33d86 ("ARM: shmobile: r8a73a4: ape6evm: Remove
>> legacy platform"), r8a73a4 is only supported in generic ARM
>> multi-platform builds.  Hence CONFIG_ARCH_MULTIPLATFORM is always set,
>> and the check can be removed.
>>
>> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
>> ---
>> This depends on Simon's branch r8a73a4-ccf-and-multiplatform-for-v4.1

> I guess I can't merge it to pinctrl then and Simon will take it?

Sorry for the confusion, that was a old comment I forgot to remove, as
that branch was already upstream.
The comment was no longer there in the updated version, sent 1 minute later.

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] 9+ messages in thread

* Re: [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check
  2015-04-28 10:15 Geert Uytterhoeven
  2015-04-29 11:53 ` Laurent Pinchart
@ 2015-05-12 10:29 ` Linus Walleij
  1 sibling, 0 replies; 9+ messages in thread
From: Linus Walleij @ 2015-05-12 10:29 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Laurent Pinchart, linux-sh@vger.kernel.org,
	linux-gpio@vger.kernel.org

On Tue, Apr 28, 2015 at 12:15 PM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

> As of commit 9d07d414d4c33d86 ("ARM: shmobile: r8a73a4: ape6evm: Remove
> legacy platform"), r8a73a4 is only supported in generic ARM
> multi-platform builds.  Hence CONFIG_ARCH_MULTIPLATFORM is always set,
> and the check can be removed.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Patch applied.

Yours,
Linus Walleij

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

* Re: [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check
  2015-05-12  7:26 ` Linus Walleij
  2015-05-12  7:45   ` Geert Uytterhoeven
@ 2015-05-14  0:49   ` Simon Horman
  2015-05-14 10:23     ` Linus Walleij
  1 sibling, 1 reply; 9+ messages in thread
From: Simon Horman @ 2015-05-14  0:49 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Geert Uytterhoeven, Laurent Pinchart, linux-sh@vger.kernel.org,
	linux-gpio@vger.kernel.org

Hi Linus,

On Tue, May 12, 2015 at 09:26:53AM +0200, Linus Walleij wrote:
> On Tue, Apr 28, 2015 at 12:14 PM, Geert Uytterhoeven
> <geert+renesas@glider.be> wrote:
> 
> > As of commit 9d07d414d4c33d86 ("ARM: shmobile: r8a73a4: ape6evm: Remove
> > legacy platform"), r8a73a4 is only supported in generic ARM
> > multi-platform builds.  Hence CONFIG_ARCH_MULTIPLATFORM is always set,
> > and the check can be removed.
> >
> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > ---
> > This depends on Simon's branch r8a73a4-ccf-and-multiplatform-for-v4.1
> 
> I guess I can't merge it to pinctrl then and Simon will take it?
> 
> Acked-by: Linus Walleij <linus.walleij@linaro.org>

I am happy to take this with your ack, however, the above mentioned branch
is present in v4.1-rc1 so if it is practical for you to use that as a base
then you can take the patch yourself.

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

* Re: [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check
  2015-05-14  0:49   ` Simon Horman
@ 2015-05-14 10:23     ` Linus Walleij
  0 siblings, 0 replies; 9+ messages in thread
From: Linus Walleij @ 2015-05-14 10:23 UTC (permalink / raw)
  To: Simon Horman
  Cc: Geert Uytterhoeven, Laurent Pinchart, linux-sh@vger.kernel.org,
	linux-gpio@vger.kernel.org

On Thu, May 14, 2015 at 2:49 AM, Simon Horman <horms@verge.net.au> wrote:
> Hi Linus,
>
> On Tue, May 12, 2015 at 09:26:53AM +0200, Linus Walleij wrote:
>> On Tue, Apr 28, 2015 at 12:14 PM, Geert Uytterhoeven
>> <geert+renesas@glider.be> wrote:
>>
>> > As of commit 9d07d414d4c33d86 ("ARM: shmobile: r8a73a4: ape6evm: Remove
>> > legacy platform"), r8a73a4 is only supported in generic ARM
>> > multi-platform builds.  Hence CONFIG_ARCH_MULTIPLATFORM is always set,
>> > and the check can be removed.
>> >
>> > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
>> > ---
>> > This depends on Simon's branch r8a73a4-ccf-and-multiplatform-for-v4.1
>>
>> I guess I can't merge it to pinctrl then and Simon will take it?
>>
>> Acked-by: Linus Walleij <linus.walleij@linaro.org>
>
> I am happy to take this with your ack, however, the above mentioned branch
> is present in v4.1-rc1 so if it is practical for you to use that as a base
> then you can take the patch yourself.

Yeah I took it. Thanks Simon.

Yours,
Linus Walleij

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

end of thread, other threads:[~2015-05-14 10:23 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-28 10:14 [PATCH 1/2] pinctrl: sh-pfc: r8a73a4: Remove obsolete multi-platform check Geert Uytterhoeven
2015-04-30  5:49 ` Simon Horman
2015-05-12  7:26 ` Linus Walleij
2015-05-12  7:45   ` Geert Uytterhoeven
2015-05-14  0:49   ` Simon Horman
2015-05-14 10:23     ` Linus Walleij
  -- strict thread matches above, loose matches on Subject: below --
2015-04-28 10:15 Geert Uytterhoeven
2015-04-29 11:53 ` Laurent Pinchart
2015-05-12 10:29 ` 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).