All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sh-pfc: r8a7778: tidyup MMC_D1 pin
@ 2013-06-12  2:02 Kuninori Morimoto
  2013-06-12  8:23 ` Simon Horman
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Kuninori Morimoto @ 2013-06-12  2:02 UTC (permalink / raw)
  To: linux-sh

MMC_D1 is RCAR_GP_PIN(1, 8), not RCAR_GP_PIN(2, 8)

Reported-by: Yusuke Goda <yusuke.goda.sx@renesas.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
This patch is based on renesas-next-20130611v2

 drivers/pinctrl/sh-pfc/pfc-r8a7778.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
index 1dcbabc..f903910 100644
--- a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
+++ b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
@@ -1447,11 +1447,11 @@ MMC_PFC_PINS(mmc_ctrl,		RCAR_GP_PIN(1, 5),	RCAR_GP_PIN(1, 6));
 MMC_PFC_CTRL(mmc_ctrl,		MMC_CLK,		MMC_CMD);
 MMC_PFC_PINS(mmc_data1,		RCAR_GP_PIN(1, 7));
 MMC_PFC_DAT1(mmc_data1,		MMC_D0);
-MMC_PFC_PINS(mmc_data4,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(2, 8),
+MMC_PFC_PINS(mmc_data4,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(1, 8),
 				RCAR_GP_PIN(0, 5),	RCAR_GP_PIN(0, 6));
 MMC_PFC_DAT4(mmc_data4,		MMC_D0,			MMC_D1,
 				MMC_D2,			MMC_D3);
-MMC_PFC_PINS(mmc_data8,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(2, 8),
+MMC_PFC_PINS(mmc_data8,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(1, 8),
 				RCAR_GP_PIN(0, 5),	RCAR_GP_PIN(0, 6),
 				RCAR_GP_PIN(1, 4),	RCAR_GP_PIN(1, 0),
 				RCAR_GP_PIN(0, 30),	RCAR_GP_PIN(0, 31));
-- 
1.7.9.5


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

* Re: [PATCH] sh-pfc: r8a7778: tidyup MMC_D1 pin
  2013-06-12  2:02 [PATCH] sh-pfc: r8a7778: tidyup MMC_D1 pin Kuninori Morimoto
@ 2013-06-12  8:23 ` Simon Horman
  2013-06-17  7:05 ` Simon Horman
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-06-12  8:23 UTC (permalink / raw)
  To: linux-sh

On Tue, Jun 11, 2013 at 07:02:20PM -0700, Kuninori Morimoto wrote:
> MMC_D1 is RCAR_GP_PIN(1, 8), not RCAR_GP_PIN(2, 8)
> 
> Reported-by: Yusuke Goda <yusuke.goda.sx@renesas.com>
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Laurent, could you please review this?

> ---
> This patch is based on renesas-next-20130611v2
> 
>  drivers/pinctrl/sh-pfc/pfc-r8a7778.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> index 1dcbabc..f903910 100644
> --- a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> +++ b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> @@ -1447,11 +1447,11 @@ MMC_PFC_PINS(mmc_ctrl,		RCAR_GP_PIN(1, 5),	RCAR_GP_PIN(1, 6));
>  MMC_PFC_CTRL(mmc_ctrl,		MMC_CLK,		MMC_CMD);
>  MMC_PFC_PINS(mmc_data1,		RCAR_GP_PIN(1, 7));
>  MMC_PFC_DAT1(mmc_data1,		MMC_D0);
> -MMC_PFC_PINS(mmc_data4,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(2, 8),
> +MMC_PFC_PINS(mmc_data4,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(1, 8),
>  				RCAR_GP_PIN(0, 5),	RCAR_GP_PIN(0, 6));
>  MMC_PFC_DAT4(mmc_data4,		MMC_D0,			MMC_D1,
>  				MMC_D2,			MMC_D3);
> -MMC_PFC_PINS(mmc_data8,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(2, 8),
> +MMC_PFC_PINS(mmc_data8,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(1, 8),
>  				RCAR_GP_PIN(0, 5),	RCAR_GP_PIN(0, 6),
>  				RCAR_GP_PIN(1, 4),	RCAR_GP_PIN(1, 0),
>  				RCAR_GP_PIN(0, 30),	RCAR_GP_PIN(0, 31));
> -- 
> 1.7.9.5
> 

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

* Re: [PATCH] sh-pfc: r8a7778: tidyup MMC_D1 pin
  2013-06-12  2:02 [PATCH] sh-pfc: r8a7778: tidyup MMC_D1 pin Kuninori Morimoto
  2013-06-12  8:23 ` Simon Horman
@ 2013-06-17  7:05 ` Simon Horman
  2013-06-17 10:38 ` Laurent Pinchart
  2013-06-18  7:11 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-06-17  7:05 UTC (permalink / raw)
  To: linux-sh

[ Actually CC Laurent ]

On Wed, Jun 12, 2013 at 05:23:38PM +0900, Simon Horman wrote:
> On Tue, Jun 11, 2013 at 07:02:20PM -0700, Kuninori Morimoto wrote:
> > MMC_D1 is RCAR_GP_PIN(1, 8), not RCAR_GP_PIN(2, 8)
> > 
> > Reported-by: Yusuke Goda <yusuke.goda.sx@renesas.com>
> > Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> Laurent, could you please review this?
> 
> > ---
> > This patch is based on renesas-next-20130611v2
> > 
> >  drivers/pinctrl/sh-pfc/pfc-r8a7778.c |    4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> > index 1dcbabc..f903910 100644
> > --- a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> > +++ b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> > @@ -1447,11 +1447,11 @@ MMC_PFC_PINS(mmc_ctrl,		RCAR_GP_PIN(1, 5),	RCAR_GP_PIN(1, 6));
> >  MMC_PFC_CTRL(mmc_ctrl,		MMC_CLK,		MMC_CMD);
> >  MMC_PFC_PINS(mmc_data1,		RCAR_GP_PIN(1, 7));
> >  MMC_PFC_DAT1(mmc_data1,		MMC_D0);
> > -MMC_PFC_PINS(mmc_data4,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(2, 8),
> > +MMC_PFC_PINS(mmc_data4,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(1, 8),
> >  				RCAR_GP_PIN(0, 5),	RCAR_GP_PIN(0, 6));
> >  MMC_PFC_DAT4(mmc_data4,		MMC_D0,			MMC_D1,
> >  				MMC_D2,			MMC_D3);
> > -MMC_PFC_PINS(mmc_data8,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(2, 8),
> > +MMC_PFC_PINS(mmc_data8,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(1, 8),
> >  				RCAR_GP_PIN(0, 5),	RCAR_GP_PIN(0, 6),
> >  				RCAR_GP_PIN(1, 4),	RCAR_GP_PIN(1, 0),
> >  				RCAR_GP_PIN(0, 30),	RCAR_GP_PIN(0, 31));
> > -- 
> > 1.7.9.5
> > 

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

* Re: [PATCH] sh-pfc: r8a7778: tidyup MMC_D1 pin
  2013-06-12  2:02 [PATCH] sh-pfc: r8a7778: tidyup MMC_D1 pin Kuninori Morimoto
  2013-06-12  8:23 ` Simon Horman
  2013-06-17  7:05 ` Simon Horman
@ 2013-06-17 10:38 ` Laurent Pinchart
  2013-06-18  7:11 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Laurent Pinchart @ 2013-06-17 10:38 UTC (permalink / raw)
  To: linux-sh

Hi Simon,

On Monday 17 June 2013 16:05:38 Simon Horman wrote:
> [ Actually CC Laurent ]
> 
> On Wed, Jun 12, 2013 at 05:23:38PM +0900, Simon Horman wrote:
> > On Tue, Jun 11, 2013 at 07:02:20PM -0700, Kuninori Morimoto wrote:
> > > MMC_D1 is RCAR_GP_PIN(1, 8), not RCAR_GP_PIN(2, 8)
> > > 
> > > Reported-by: Yusuke Goda <yusuke.goda.sx@renesas.com>
> > > Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> > 
> > Laurent, could you please review this?

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

Remind me next time we meet to show you what to check in the datasheet to 
review this kind of patches ;-)

> > > ---
> > > This patch is based on renesas-next-20130611v2
> > > 
> > >  drivers/pinctrl/sh-pfc/pfc-r8a7778.c |    4 ++--
> > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > > 
> > > diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> > > b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c index 1dcbabc..f903910 100644
> > > --- a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> > > +++ b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> > > @@ -1447,11 +1447,11 @@ MMC_PFC_PINS(mmc_ctrl,		RCAR_GP_PIN(1,
> > > 5),	RCAR_GP_PIN(1, 6));> > 
> > >  MMC_PFC_CTRL(mmc_ctrl,		MMC_CLK,		MMC_CMD);
> > >  MMC_PFC_PINS(mmc_data1,		RCAR_GP_PIN(1, 7));
> > >  MMC_PFC_DAT1(mmc_data1,		MMC_D0);
> > > 
> > > -MMC_PFC_PINS(mmc_data4,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(2, 8),
> > > +MMC_PFC_PINS(mmc_data4,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(1, 8),
> > > 
> > >  				RCAR_GP_PIN(0, 5),	RCAR_GP_PIN(0, 6));
> > >  
> > >  MMC_PFC_DAT4(mmc_data4,		MMC_D0,			MMC_D1,
> > >  
> > >  				MMC_D2,			MMC_D3);
> > > 
> > > -MMC_PFC_PINS(mmc_data8,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(2, 8),
> > > +MMC_PFC_PINS(mmc_data8,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(1, 8),
> > > 
> > >  				RCAR_GP_PIN(0, 5),	RCAR_GP_PIN(0, 6),
> > >  				RCAR_GP_PIN(1, 4),	RCAR_GP_PIN(1, 0),
> > >  				RCAR_GP_PIN(0, 30),	RCAR_GP_PIN(0, 31));

-- 
Regards,

Laurent Pinchart


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

* Re: [PATCH] sh-pfc: r8a7778: tidyup MMC_D1 pin
  2013-06-12  2:02 [PATCH] sh-pfc: r8a7778: tidyup MMC_D1 pin Kuninori Morimoto
                   ` (2 preceding siblings ...)
  2013-06-17 10:38 ` Laurent Pinchart
@ 2013-06-18  7:11 ` Simon Horman
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2013-06-18  7:11 UTC (permalink / raw)
  To: linux-sh

On Mon, Jun 17, 2013 at 12:38:59PM +0200, Laurent Pinchart wrote:
> Hi Simon,
> 
> On Monday 17 June 2013 16:05:38 Simon Horman wrote:
> > [ Actually CC Laurent ]
> > 
> > On Wed, Jun 12, 2013 at 05:23:38PM +0900, Simon Horman wrote:
> > > On Tue, Jun 11, 2013 at 07:02:20PM -0700, Kuninori Morimoto wrote:
> > > > MMC_D1 is RCAR_GP_PIN(1, 8), not RCAR_GP_PIN(2, 8)
> > > > 
> > > > Reported-by: Yusuke Goda <yusuke.goda.sx@renesas.com>
> > > > Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> > > 
> > > Laurent, could you please review this?
> 
> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> 
> Remind me next time we meet to show you what to check in the datasheet to 
> review this kind of patches ;-)

Thanks.

> > > > ---
> > > > This patch is based on renesas-next-20130611v2
> > > > 
> > > >  drivers/pinctrl/sh-pfc/pfc-r8a7778.c |    4 ++--
> > > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > > > 
> > > > diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> > > > b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c index 1dcbabc..f903910 100644
> > > > --- a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> > > > +++ b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c
> > > > @@ -1447,11 +1447,11 @@ MMC_PFC_PINS(mmc_ctrl,		RCAR_GP_PIN(1,
> > > > 5),	RCAR_GP_PIN(1, 6));> > 
> > > >  MMC_PFC_CTRL(mmc_ctrl,		MMC_CLK,		MMC_CMD);
> > > >  MMC_PFC_PINS(mmc_data1,		RCAR_GP_PIN(1, 7));
> > > >  MMC_PFC_DAT1(mmc_data1,		MMC_D0);
> > > > 
> > > > -MMC_PFC_PINS(mmc_data4,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(2, 8),
> > > > +MMC_PFC_PINS(mmc_data4,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(1, 8),
> > > > 
> > > >  				RCAR_GP_PIN(0, 5),	RCAR_GP_PIN(0, 6));
> > > >  
> > > >  MMC_PFC_DAT4(mmc_data4,		MMC_D0,			MMC_D1,
> > > >  
> > > >  				MMC_D2,			MMC_D3);
> > > > 
> > > > -MMC_PFC_PINS(mmc_data8,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(2, 8),
> > > > +MMC_PFC_PINS(mmc_data8,		RCAR_GP_PIN(1, 7),	RCAR_GP_PIN(1, 8),
> > > > 
> > > >  				RCAR_GP_PIN(0, 5),	RCAR_GP_PIN(0, 6),
> > > >  				RCAR_GP_PIN(1, 4),	RCAR_GP_PIN(1, 0),
> > > >  				RCAR_GP_PIN(0, 30),	RCAR_GP_PIN(0, 31));
> 
> -- 
> Regards,
> 
> Laurent Pinchart
> 
> --
> 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] 5+ messages in thread

end of thread, other threads:[~2013-06-18  7:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-12  2:02 [PATCH] sh-pfc: r8a7778: tidyup MMC_D1 pin Kuninori Morimoto
2013-06-12  8:23 ` Simon Horman
2013-06-17  7:05 ` Simon Horman
2013-06-17 10:38 ` Laurent Pinchart
2013-06-18  7:11 ` 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.