All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/3] sh-pfc: r8a7779: Improve readability with a new macro
@ 2013-04-08 10:05 Laurent Pinchart
  2013-04-09 13:13 ` Simon Horman
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Laurent Pinchart @ 2013-04-08 10:05 UTC (permalink / raw)
  To: linux-sh

Hello,

This is the second version of the r8a7779 PFC readability improvement patches
that use a macro to convert from the documentation pin number space to the
linear pinctrl space.

Note that patch 1/3 has already been posted as part of the "r8a7790 PFC pinctrl
and GPIO improvements" patch series. Depending on the merge order one of them
should be dropped.

Simon, is there a chance you could queue this to your pinmux branch for v3.10 ?

Changes from v1:

- Rename the macro to RCAR_GP_PIN
- Define the macro in a single header file

Laurent Pinchart (3):
  gpio-rcar: Add RCAR_GP_PIN macro
  sh-pfc: r8a7779: Replace hardcoded pin numbers with RCAR_GP_PIN macro
  ARM: shmobile: marzen: Use RCAR_GP_PIN macro

 arch/arm/mach-shmobile/board-marzen.c   |   7 +-
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c    | 294 ++++++++++++++++++--------------
 include/linux/platform_data/gpio-rcar.h |   2 +
 3 files changed, 170 insertions(+), 133 deletions(-)

-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH v2 0/3] sh-pfc: r8a7779: Improve readability with a new macro
  2013-04-08 10:05 [PATCH v2 0/3] sh-pfc: r8a7779: Improve readability with a new macro Laurent Pinchart
@ 2013-04-09 13:13 ` Simon Horman
  2013-04-09 13:14 ` Laurent Pinchart
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-04-09 13:13 UTC (permalink / raw)
  To: linux-sh

On 月,  4月 08, 2013 at 12:05:29午後 +0200, Laurent Pinchart wrote:
> Hello,
> 
> This is the second version of the r8a7779 PFC readability improvement patches
> that use a macro to convert from the documentation pin number space to the
> linear pinctrl space.
> 
> Note that patch 1/3 has already been posted as part of the "r8a7790 PFC pinctrl
> and GPIO improvements" patch series. Depending on the merge order one of them
> should be dropped.
> 
> Simon, is there a chance you could queue this to your pinmux branch for v3.10 ?

If it is urgent, yes. Otherwise I'd prefer to wait for v3.11.

In any case, Magnus, can I get a review?


> Changes from v1:
> 
> - Rename the macro to RCAR_GP_PIN
> - Define the macro in a single header file
> 
> Laurent Pinchart (3):
>   gpio-rcar: Add RCAR_GP_PIN macro
>   sh-pfc: r8a7779: Replace hardcoded pin numbers with RCAR_GP_PIN macro
>   ARM: shmobile: marzen: Use RCAR_GP_PIN macro
> 
>  arch/arm/mach-shmobile/board-marzen.c   |   7 +-
>  drivers/pinctrl/sh-pfc/pfc-r8a7779.c    | 294 ++++++++++++++++++--------------
>  include/linux/platform_data/gpio-rcar.h |   2 +
>  3 files changed, 170 insertions(+), 133 deletions(-)
> 
> -- 
> Regards,
> 
> Laurent Pinchart
> 

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

* Re: [PATCH v2 0/3] sh-pfc: r8a7779: Improve readability with a new macro
  2013-04-08 10:05 [PATCH v2 0/3] sh-pfc: r8a7779: Improve readability with a new macro Laurent Pinchart
  2013-04-09 13:13 ` Simon Horman
@ 2013-04-09 13:14 ` Laurent Pinchart
  2013-04-11  8:07 ` Simon Horman
  2013-04-22  3:31 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Laurent Pinchart @ 2013-04-09 13:14 UTC (permalink / raw)
  To: linux-sh

Hi Simon,

On Tuesday 09 April 2013 22:13:25 Simon Horman wrote:
> On 月,  4月 08, 2013 at 12:05:29午後 +0200, Laurent Pinchart wrote:
> > Hello,
> > 
> > This is the second version of the r8a7779 PFC readability improvement
> > patches that use a macro to convert from the documentation pin number
> > space to the linear pinctrl space.
> > 
> > Note that patch 1/3 has already been posted as part of the "r8a7790 PFC
> > pinctrl and GPIO improvements" patch series. Depending on the merge order
> > one of them should be dropped.
> > 
> > Simon, is there a chance you could queue this to your pinmux branch for
> > v3.10 ?
>
> If it is urgent, yes. Otherwise I'd prefer to wait for v3.11.

That's fine with me.

> In any case, Magnus, can I get a review?
> 
> > Changes from v1:
> > 
> > - Rename the macro to RCAR_GP_PIN
> > - Define the macro in a single header file
> > 
> > Laurent Pinchart (3):
> >   gpio-rcar: Add RCAR_GP_PIN macro
> >   sh-pfc: r8a7779: Replace hardcoded pin numbers with RCAR_GP_PIN macro
> >   ARM: shmobile: marzen: Use RCAR_GP_PIN macro
> >  
> >  arch/arm/mach-shmobile/board-marzen.c   |   7 +-
> >  drivers/pinctrl/sh-pfc/pfc-r8a7779.c    | 294 +++++++++++++++------------
> >  include/linux/platform_data/gpio-rcar.h |   2 +
> >  3 files changed, 170 insertions(+), 133 deletions(-)
-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH v2 0/3] sh-pfc: r8a7779: Improve readability with a new macro
  2013-04-08 10:05 [PATCH v2 0/3] sh-pfc: r8a7779: Improve readability with a new macro Laurent Pinchart
  2013-04-09 13:13 ` Simon Horman
  2013-04-09 13:14 ` Laurent Pinchart
@ 2013-04-11  8:07 ` Simon Horman
  2013-04-22  3:31 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-04-11  8:07 UTC (permalink / raw)
  To: linux-sh

On 火,  4月 09, 2013 at 03:14:40午後 +0200, Laurent Pinchart wrote:
> Hi Simon,
> 
> On Tuesday 09 April 2013 22:13:25 Simon Horman wrote:
> > On 月,  4月 08, 2013 at 12:05:29午後 +0200, Laurent Pinchart wrote:
> > > Hello,
> > > 
> > > This is the second version of the r8a7779 PFC readability improvement
> > > patches that use a macro to convert from the documentation pin number
> > > space to the linear pinctrl space.
> > > 
> > > Note that patch 1/3 has already been posted as part of the "r8a7790 PFC
> > > pinctrl and GPIO improvements" patch series. Depending on the merge order
> > > one of them should be dropped.
> > > 
> > > Simon, is there a chance you could queue this to your pinmux branch for
> > > v3.10 ?
> >
> > If it is urgent, yes. Otherwise I'd prefer to wait for v3.11.
> 
> That's fine with me.
> 
> > In any case, Magnus, can I get a review?
> > 
> > > Changes from v1:
> > > 
> > > - Rename the macro to RCAR_GP_PIN
> > > - Define the macro in a single header file
> > > 
> > > Laurent Pinchart (3):
> > >   gpio-rcar: Add RCAR_GP_PIN macro

I have queued-up the above patch for v3.11 in the pinmux branch.

> > >   sh-pfc: r8a7779: Replace hardcoded pin numbers with RCAR_GP_PIN macro

I have merged the pinmux branch into the soc-r8a7779 branch and
queued-up the above patch there.

> > >   ARM: shmobile: marzen: Use RCAR_GP_PIN macro

I have merged the pinmux branch into the boards-marzen branch and
queued-up the above patch there.

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

* Re: [PATCH v2 0/3] sh-pfc: r8a7779: Improve readability with a new macro
  2013-04-08 10:05 [PATCH v2 0/3] sh-pfc: r8a7779: Improve readability with a new macro Laurent Pinchart
                   ` (2 preceding siblings ...)
  2013-04-11  8:07 ` Simon Horman
@ 2013-04-22  3:31 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-04-22  3:31 UTC (permalink / raw)
  To: linux-sh

On Thu, Apr 11, 2013 at 05:07:53PM +0900, Simon Horman wrote:
> On 火,  4月 09, 2013 at 03:14:40午後 +0200, Laurent Pinchart wrote:
> > Hi Simon,
> > 
> > On Tuesday 09 April 2013 22:13:25 Simon Horman wrote:
> > > On 月,  4月 08, 2013 at 12:05:29午後 +0200, Laurent Pinchart wrote:
> > > > Hello,
> > > > 
> > > > This is the second version of the r8a7779 PFC readability improvement
> > > > patches that use a macro to convert from the documentation pin number
> > > > space to the linear pinctrl space.
> > > > 
> > > > Note that patch 1/3 has already been posted as part of the "r8a7790 PFC
> > > > pinctrl and GPIO improvements" patch series. Depending on the merge order
> > > > one of them should be dropped.
> > > > 
> > > > Simon, is there a chance you could queue this to your pinmux branch for
> > > > v3.10 ?
> > >
> > > If it is urgent, yes. Otherwise I'd prefer to wait for v3.11.
> > 
> > That's fine with me.
> > 
> > > In any case, Magnus, can I get a review?
> > > 
> > > > Changes from v1:
> > > > 
> > > > - Rename the macro to RCAR_GP_PIN
> > > > - Define the macro in a single header file
> > > > 
> > > > Laurent Pinchart (3):
> > > >   gpio-rcar: Add RCAR_GP_PIN macro
> 
> I have queued-up the above patch for v3.11 in the pinmux branch.
> 
> > > >   sh-pfc: r8a7779: Replace hardcoded pin numbers with RCAR_GP_PIN macro
> 
> I have merged the pinmux branch into the soc-r8a7779 branch and
> queued-up the above patch there.

I have moved the above patch to the pinmux branch as it seems to
be a more appropriate location for it. It is also a dependency of
"sh-pfc: r8a7779: add VIN pin groups" which I had applied to the pinmux
branch.

> > > >   ARM: shmobile: marzen: Use RCAR_GP_PIN macro
> 
> I have merged the pinmux branch into the boards-marzen branch and
> queued-up the above patch there.

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

end of thread, other threads:[~2013-04-22  3:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-08 10:05 [PATCH v2 0/3] sh-pfc: r8a7779: Improve readability with a new macro Laurent Pinchart
2013-04-09 13:13 ` Simon Horman
2013-04-09 13:14 ` Laurent Pinchart
2013-04-11  8:07 ` Simon Horman
2013-04-22  3:31 ` Simon Horman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.