All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Horman <horms@verge.net.au>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 01/12] clocksource: sh_cmt: Add clk_prepare/unprepare support
Date: Wed, 30 Oct 2013 00:10:19 +0000	[thread overview]
Message-ID: <20131030001018.GF21262@verge.net.au> (raw)
In-Reply-To: <9952506.6pWpQZf7WG@avalon>

On Tue, Oct 29, 2013 at 10:55:05AM +0100, Laurent Pinchart wrote:
> Hi Simon,
> 
> On Tuesday 29 October 2013 14:55:35 Simon Horman wrote:
> > On Mon, Oct 28, 2013 at 11:49:18PM +0100, Laurent Pinchart wrote:
> > > Prepare the clock at probe time, as there is no other appropriate place
> > > in the driver where we're allowed to sleep.
> > > 
> > > Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
> > > Cc: linux-kernel@vger.kernel.org
> > > Signed-off-by: Laurent Pinchart
> > > <laurent.pinchart+renesas@ideasonboard.com>
> > 
> > Thanks Laurent,
> > 
> > I have queued this up in the clocksources branch of my renesas tree.
> > I will send a pull request to Mike once v3.13-rc1 has hit the shelves.
> > Mike, please let me know if you would prefer something earlier than that.
> 
> I thought the clocksource patches had to go through Daniel's tree. If you can 
> take them directly that's easier, so I'm fine with that. Does this imply your 
> Acked-by (for patches 01 to 03) ?

Sorry, my mistake. The do go through Daniel. As a convenience
I have been picking up Renesas clocksource patches and passing
them on to Daniel. I'm happy to keep doing this. And I'm happy to
go the next step and add some entries to MAINTAINERS if that is
useful to others.

As I mentioned above I have queued these up (though not yet pushed them
as I got bogged down yesterday afternoon). But if you would
prefer Daniel to take them directly then please use the following:

Patches 01 - 03:

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

> 
> > > ---
> > > 
> > >  drivers/clocksource/sh_cmt.c | 20 ++++++++++++++++----
> > >  1 file changed, 16 insertions(+), 4 deletions(-)
> > > 
> > > diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c
> > > index 0965e98..940341a 100644
> > > --- a/drivers/clocksource/sh_cmt.c
> > > +++ b/drivers/clocksource/sh_cmt.c
> > > @@ -634,12 +634,18 @@ static int sh_cmt_clock_event_next(unsigned long
> > > delta,> 
> > >  static void sh_cmt_clock_event_suspend(struct clock_event_device *ced)
> > >  {
> > > -	pm_genpd_syscore_poweroff(&ced_to_sh_cmt(ced)->pdev->dev);
> > > +	struct sh_cmt_priv *p = ced_to_sh_cmt(ced);
> > > +
> > > +	pm_genpd_syscore_poweroff(&p->pdev->dev);
> > > +	clk_unprepare(p->clk);
> > >  }
> > >  
> > >  static void sh_cmt_clock_event_resume(struct clock_event_device *ced)
> > >  {
> > > -	pm_genpd_syscore_poweron(&ced_to_sh_cmt(ced)->pdev->dev);
> > > +	struct sh_cmt_priv *p = ced_to_sh_cmt(ced);
> > > +
> > > +	clk_prepare(p->clk);
> > > +	pm_genpd_syscore_poweron(&p->pdev->dev);
> > >  }
> > >  
> > >  static void sh_cmt_register_clockevent(struct sh_cmt_priv *p,
> > > 
> > > @@ -737,6 +743,10 @@ static int sh_cmt_setup(struct sh_cmt_priv *p, struct
> > > platform_device *pdev)> 
> > >  		goto err2;
> > >  	}
> > > 
> > > +	ret = clk_prepare(p->clk);
> > > +	if (ret < 0)
> > > +		goto err3;
> > > +
> > >  	if (res2 && (resource_size(res2) = 4)) {
> > >  		/* assume both CMSTR and CMCSR to be 32-bit */
> > >  		p->read_control = sh_cmt_read32;
> > > @@ -773,19 +783,21 @@ static int sh_cmt_setup(struct sh_cmt_priv *p,
> > > struct platform_device *pdev)> 
> > >  			      cfg->clocksource_rating);
> > >  	if (ret) {
> > >  		dev_err(&p->pdev->dev, "registration failed\n");
> > > -		goto err3;
> > > +		goto err4;
> > >  	}
> > >  	p->cs_enabled = false;
> > >  	
> > >  	ret = setup_irq(irq, &p->irqaction);
> > >  	if (ret) {
> > >  		dev_err(&p->pdev->dev, "failed to request irq %d\n", irq);
> > > -		goto err3;
> > > +		goto err4;
> > >  	}
> > >  	
> > >  	platform_set_drvdata(pdev, p);
> > >  	
> > >  	return 0;
> > > 
> > > +err4:
> > > +	clk_unprepare(p->clk);
> > >  err3:
> > >  	clk_put(p->clk);
> > >  err2:
> -- 
> 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
> 

WARNING: multiple messages have this Message-ID (diff)
From: Simon Horman <horms@verge.net.au>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>,
	linux-arm-kernel@lists.infradead.org, linux-sh@vger.kernel.org,
	Mike Turquette <mturquette@linaro.org>,
	Daniel Lezcano <daniel.lezcano@linaro.org>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 01/12] clocksource: sh_cmt: Add clk_prepare/unprepare support
Date: Wed, 30 Oct 2013 09:10:19 +0900	[thread overview]
Message-ID: <20131030001018.GF21262@verge.net.au> (raw)
In-Reply-To: <9952506.6pWpQZf7WG@avalon>

On Tue, Oct 29, 2013 at 10:55:05AM +0100, Laurent Pinchart wrote:
> Hi Simon,
> 
> On Tuesday 29 October 2013 14:55:35 Simon Horman wrote:
> > On Mon, Oct 28, 2013 at 11:49:18PM +0100, Laurent Pinchart wrote:
> > > Prepare the clock at probe time, as there is no other appropriate place
> > > in the driver where we're allowed to sleep.
> > > 
> > > Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
> > > Cc: linux-kernel@vger.kernel.org
> > > Signed-off-by: Laurent Pinchart
> > > <laurent.pinchart+renesas@ideasonboard.com>
> > 
> > Thanks Laurent,
> > 
> > I have queued this up in the clocksources branch of my renesas tree.
> > I will send a pull request to Mike once v3.13-rc1 has hit the shelves.
> > Mike, please let me know if you would prefer something earlier than that.
> 
> I thought the clocksource patches had to go through Daniel's tree. If you can 
> take them directly that's easier, so I'm fine with that. Does this imply your 
> Acked-by (for patches 01 to 03) ?

Sorry, my mistake. The do go through Daniel. As a convenience
I have been picking up Renesas clocksource patches and passing
them on to Daniel. I'm happy to keep doing this. And I'm happy to
go the next step and add some entries to MAINTAINERS if that is
useful to others.

As I mentioned above I have queued these up (though not yet pushed them
as I got bogged down yesterday afternoon). But if you would
prefer Daniel to take them directly then please use the following:

Patches 01 - 03:

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

> 
> > > ---
> > > 
> > >  drivers/clocksource/sh_cmt.c | 20 ++++++++++++++++----
> > >  1 file changed, 16 insertions(+), 4 deletions(-)
> > > 
> > > diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c
> > > index 0965e98..940341a 100644
> > > --- a/drivers/clocksource/sh_cmt.c
> > > +++ b/drivers/clocksource/sh_cmt.c
> > > @@ -634,12 +634,18 @@ static int sh_cmt_clock_event_next(unsigned long
> > > delta,> 
> > >  static void sh_cmt_clock_event_suspend(struct clock_event_device *ced)
> > >  {
> > > -	pm_genpd_syscore_poweroff(&ced_to_sh_cmt(ced)->pdev->dev);
> > > +	struct sh_cmt_priv *p = ced_to_sh_cmt(ced);
> > > +
> > > +	pm_genpd_syscore_poweroff(&p->pdev->dev);
> > > +	clk_unprepare(p->clk);
> > >  }
> > >  
> > >  static void sh_cmt_clock_event_resume(struct clock_event_device *ced)
> > >  {
> > > -	pm_genpd_syscore_poweron(&ced_to_sh_cmt(ced)->pdev->dev);
> > > +	struct sh_cmt_priv *p = ced_to_sh_cmt(ced);
> > > +
> > > +	clk_prepare(p->clk);
> > > +	pm_genpd_syscore_poweron(&p->pdev->dev);
> > >  }
> > >  
> > >  static void sh_cmt_register_clockevent(struct sh_cmt_priv *p,
> > > 
> > > @@ -737,6 +743,10 @@ static int sh_cmt_setup(struct sh_cmt_priv *p, struct
> > > platform_device *pdev)> 
> > >  		goto err2;
> > >  	}
> > > 
> > > +	ret = clk_prepare(p->clk);
> > > +	if (ret < 0)
> > > +		goto err3;
> > > +
> > >  	if (res2 && (resource_size(res2) == 4)) {
> > >  		/* assume both CMSTR and CMCSR to be 32-bit */
> > >  		p->read_control = sh_cmt_read32;
> > > @@ -773,19 +783,21 @@ static int sh_cmt_setup(struct sh_cmt_priv *p,
> > > struct platform_device *pdev)> 
> > >  			      cfg->clocksource_rating);
> > >  	if (ret) {
> > >  		dev_err(&p->pdev->dev, "registration failed\n");
> > > -		goto err3;
> > > +		goto err4;
> > >  	}
> > >  	p->cs_enabled = false;
> > >  	
> > >  	ret = setup_irq(irq, &p->irqaction);
> > >  	if (ret) {
> > >  		dev_err(&p->pdev->dev, "failed to request irq %d\n", irq);
> > > -		goto err3;
> > > +		goto err4;
> > >  	}
> > >  	
> > >  	platform_set_drvdata(pdev, p);
> > >  	
> > >  	return 0;
> > > 
> > > +err4:
> > > +	clk_unprepare(p->clk);
> > >  err3:
> > >  	clk_put(p->clk);
> > >  err2:
> -- 
> 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
> 

WARNING: multiple messages have this Message-ID (diff)
From: horms@verge.net.au (Simon Horman)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 01/12] clocksource: sh_cmt: Add clk_prepare/unprepare support
Date: Wed, 30 Oct 2013 09:10:19 +0900	[thread overview]
Message-ID: <20131030001018.GF21262@verge.net.au> (raw)
In-Reply-To: <9952506.6pWpQZf7WG@avalon>

On Tue, Oct 29, 2013 at 10:55:05AM +0100, Laurent Pinchart wrote:
> Hi Simon,
> 
> On Tuesday 29 October 2013 14:55:35 Simon Horman wrote:
> > On Mon, Oct 28, 2013 at 11:49:18PM +0100, Laurent Pinchart wrote:
> > > Prepare the clock at probe time, as there is no other appropriate place
> > > in the driver where we're allowed to sleep.
> > > 
> > > Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
> > > Cc: linux-kernel at vger.kernel.org
> > > Signed-off-by: Laurent Pinchart
> > > <laurent.pinchart+renesas@ideasonboard.com>
> > 
> > Thanks Laurent,
> > 
> > I have queued this up in the clocksources branch of my renesas tree.
> > I will send a pull request to Mike once v3.13-rc1 has hit the shelves.
> > Mike, please let me know if you would prefer something earlier than that.
> 
> I thought the clocksource patches had to go through Daniel's tree. If you can 
> take them directly that's easier, so I'm fine with that. Does this imply your 
> Acked-by (for patches 01 to 03) ?

Sorry, my mistake. The do go through Daniel. As a convenience
I have been picking up Renesas clocksource patches and passing
them on to Daniel. I'm happy to keep doing this. And I'm happy to
go the next step and add some entries to MAINTAINERS if that is
useful to others.

As I mentioned above I have queued these up (though not yet pushed them
as I got bogged down yesterday afternoon). But if you would
prefer Daniel to take them directly then please use the following:

Patches 01 - 03:

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

> 
> > > ---
> > > 
> > >  drivers/clocksource/sh_cmt.c | 20 ++++++++++++++++----
> > >  1 file changed, 16 insertions(+), 4 deletions(-)
> > > 
> > > diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c
> > > index 0965e98..940341a 100644
> > > --- a/drivers/clocksource/sh_cmt.c
> > > +++ b/drivers/clocksource/sh_cmt.c
> > > @@ -634,12 +634,18 @@ static int sh_cmt_clock_event_next(unsigned long
> > > delta,> 
> > >  static void sh_cmt_clock_event_suspend(struct clock_event_device *ced)
> > >  {
> > > -	pm_genpd_syscore_poweroff(&ced_to_sh_cmt(ced)->pdev->dev);
> > > +	struct sh_cmt_priv *p = ced_to_sh_cmt(ced);
> > > +
> > > +	pm_genpd_syscore_poweroff(&p->pdev->dev);
> > > +	clk_unprepare(p->clk);
> > >  }
> > >  
> > >  static void sh_cmt_clock_event_resume(struct clock_event_device *ced)
> > >  {
> > > -	pm_genpd_syscore_poweron(&ced_to_sh_cmt(ced)->pdev->dev);
> > > +	struct sh_cmt_priv *p = ced_to_sh_cmt(ced);
> > > +
> > > +	clk_prepare(p->clk);
> > > +	pm_genpd_syscore_poweron(&p->pdev->dev);
> > >  }
> > >  
> > >  static void sh_cmt_register_clockevent(struct sh_cmt_priv *p,
> > > 
> > > @@ -737,6 +743,10 @@ static int sh_cmt_setup(struct sh_cmt_priv *p, struct
> > > platform_device *pdev)> 
> > >  		goto err2;
> > >  	}
> > > 
> > > +	ret = clk_prepare(p->clk);
> > > +	if (ret < 0)
> > > +		goto err3;
> > > +
> > >  	if (res2 && (resource_size(res2) == 4)) {
> > >  		/* assume both CMSTR and CMCSR to be 32-bit */
> > >  		p->read_control = sh_cmt_read32;
> > > @@ -773,19 +783,21 @@ static int sh_cmt_setup(struct sh_cmt_priv *p,
> > > struct platform_device *pdev)> 
> > >  			      cfg->clocksource_rating);
> > >  	if (ret) {
> > >  		dev_err(&p->pdev->dev, "registration failed\n");
> > > -		goto err3;
> > > +		goto err4;
> > >  	}
> > >  	p->cs_enabled = false;
> > >  	
> > >  	ret = setup_irq(irq, &p->irqaction);
> > >  	if (ret) {
> > >  		dev_err(&p->pdev->dev, "failed to request irq %d\n", irq);
> > > -		goto err3;
> > > +		goto err4;
> > >  	}
> > >  	
> > >  	platform_set_drvdata(pdev, p);
> > >  	
> > >  	return 0;
> > > 
> > > +err4:
> > > +	clk_unprepare(p->clk);
> > >  err3:
> > >  	clk_put(p->clk);
> > >  err2:
> -- 
> Regards,
> 
> Laurent Pinchart
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

  reply	other threads:[~2013-10-30  0:10 UTC|newest]

Thread overview: 202+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-28 22:49 [PATCH 00/12] Prepare various SH/R Mobile/Car drivers for CCF migration Laurent Pinchart
2013-10-28 22:49 ` Laurent Pinchart
2013-10-28 22:49 ` Laurent Pinchart
2013-10-28 22:49 ` [PATCH 01/12] clocksource: sh_cmt: Add clk_prepare/unprepare support Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-29  5:55   ` Simon Horman
2013-10-29  5:55     ` Simon Horman
2013-10-29  5:55     ` Simon Horman
2013-10-29  9:55     ` Laurent Pinchart
2013-10-29  9:55       ` Laurent Pinchart
2013-10-29  9:55       ` Laurent Pinchart
2013-10-30  0:10       ` Simon Horman [this message]
2013-10-30  0:10         ` Simon Horman
2013-10-30  0:10         ` Simon Horman
2013-10-30  0:13         ` Laurent Pinchart
2013-10-30  0:13           ` Laurent Pinchart
2013-10-30  0:13           ` Laurent Pinchart
2013-10-30  0:27           ` Simon Horman
2013-10-30  0:27             ` Simon Horman
2013-10-30  0:27             ` Simon Horman
2013-10-28 22:49 ` [PATCH 02/12] clocksource: sh_mtu2: " Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-29  5:55   ` Simon Horman
2013-10-29  5:55     ` Simon Horman
2013-10-29  5:55     ` Simon Horman
2013-10-29 11:15   ` Sergei Shtylyov
2013-10-29 11:15     ` Sergei Shtylyov
2013-10-29 11:15     ` Sergei Shtylyov
2013-10-29 13:24     ` Laurent Pinchart
2013-10-29 13:24       ` Laurent Pinchart
2013-10-29 13:24       ` Laurent Pinchart
2013-10-29 14:30   ` [PATCH v2 1/2] clocksource: sh_mtu2: Release clock when sh_mtu2_register() fails Laurent Pinchart
2013-10-29 14:30     ` Laurent Pinchart
2013-10-29 14:30     ` Laurent Pinchart
2013-10-29 14:30     ` [PATCH v2 2/2] clocksource: sh_mtu2: Add clk_prepare/unprepare support Laurent Pinchart
2013-10-29 14:30       ` Laurent Pinchart
2013-10-29 14:30       ` Laurent Pinchart
2013-10-31  5:23       ` Simon Horman
2013-10-31  5:23         ` Simon Horman
2013-10-31  5:23         ` Simon Horman
2013-11-08 10:10       ` Daniel Lezcano
2013-11-08 10:10         ` Daniel Lezcano
2013-11-08 10:10         ` Daniel Lezcano
2013-10-31  5:23     ` [PATCH v2 1/2] clocksource: sh_mtu2: Release clock when sh_mtu2_register() fails Simon Horman
2013-10-31  5:23       ` Simon Horman
2013-10-31  5:23       ` Simon Horman
2013-11-08 10:10     ` Daniel Lezcano
2013-11-08 10:10       ` Daniel Lezcano
2013-11-08 10:10       ` Daniel Lezcano
2013-10-28 22:49 ` [PATCH 03/12] clocksource: sh_tmu: Add clk_prepare/unprepare support Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-29  5:55   ` Simon Horman
2013-10-29  5:55     ` Simon Horman
2013-10-29  5:55     ` Simon Horman
2013-10-29 11:17   ` Sergei Shtylyov
2013-10-29 11:17     ` Sergei Shtylyov
2013-10-29 11:17     ` Sergei Shtylyov
2013-10-29 14:31   ` [PATCH v2 1/2] clocksource: sh_tmu: Release clock when sh_tmu_register() fails Laurent Pinchart
2013-10-29 14:31     ` Laurent Pinchart
2013-10-29 14:31     ` Laurent Pinchart
2013-10-29 14:31     ` [PATCH v2 2/2] clocksource: sh_tmu: Add clk_prepare/unprepare support Laurent Pinchart
2013-10-29 14:31       ` Laurent Pinchart
2013-10-29 14:31       ` Laurent Pinchart
2013-10-31  5:24       ` Simon Horman
2013-10-31  5:24         ` Simon Horman
2013-10-31  5:24         ` Simon Horman
2013-11-07 13:40         ` Daniel Lezcano
2013-11-07 13:40           ` Daniel Lezcano
2013-11-07 13:40           ` Daniel Lezcano
2013-11-08  5:22           ` Simon Horman
2013-11-08  5:22             ` Simon Horman
2013-11-08  5:22             ` Simon Horman
2013-11-08 10:10       ` Daniel Lezcano
2013-11-08 10:10         ` Daniel Lezcano
2013-11-08 10:10         ` Daniel Lezcano
2013-10-31  5:23     ` [PATCH v2 1/2] clocksource: sh_tmu: Release clock when sh_tmu_register() fails Simon Horman
2013-10-31  5:23       ` Simon Horman
2013-10-31  5:23       ` Simon Horman
2013-11-08 10:10     ` Daniel Lezcano
2013-11-08 10:10       ` Daniel Lezcano
2013-11-08 10:10       ` Daniel Lezcano
2013-10-28 22:49 ` [PATCH 04/12] sata_rcar: Convert to clk_prepare/unprepare Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-29 18:41   ` Tejun Heo
2013-10-29 18:41     ` Tejun Heo
2013-10-29 18:41     ` Tejun Heo
2013-10-28 22:49 ` [PATCH 05/12] drm: shmob_drm: " Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-11-09 12:51   ` Laurent Pinchart
2013-11-11  8:55     ` Thierry Reding
2013-11-11 12:55       ` Laurent Pinchart
2013-10-28 22:49 ` [PATCH 06/12] i2c: sh_mobile: " Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-29  5:02   ` Wolfram Sang
2013-10-29  5:02     ` Wolfram Sang
2013-10-29  5:02     ` Wolfram Sang
2013-10-29  5:58     ` Simon Horman
2013-10-29  5:58       ` Simon Horman
2013-10-29  5:58       ` Simon Horman
2013-10-29  9:41       ` Laurent Pinchart
2013-10-29  9:41         ` Laurent Pinchart
2013-10-29  9:41         ` Laurent Pinchart
2013-10-31 11:49   ` Wolfram Sang
2013-10-31 11:49     ` Wolfram Sang
2013-10-31 11:49     ` Wolfram Sang
2013-10-28 22:49 ` [PATCH 07/12] mmc: sh_mmcif: " Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-29  8:10   ` Guennadi Liakhovetski
2013-10-29  8:10     ` Guennadi Liakhovetski
2013-10-29  8:10     ` Guennadi Liakhovetski
2013-10-30 22:23     ` Guennadi Liakhovetski
2013-10-30 22:23       ` Guennadi Liakhovetski
2013-10-30 22:23       ` Guennadi Liakhovetski
2013-10-30 23:13       ` Laurent Pinchart
2013-10-30 23:13         ` Laurent Pinchart
2013-10-30 23:13         ` Laurent Pinchart
2013-10-30 23:27         ` Ulf Hansson
2013-10-30 23:27           ` Ulf Hansson
2013-10-30 23:27           ` Ulf Hansson
2013-10-30 23:48           ` Laurent Pinchart
2013-10-30 23:48             ` Laurent Pinchart
2013-10-30 23:48             ` Laurent Pinchart
2013-10-28 22:49 ` [PATCH 08/12] mmc: sh_mobile_sdhi: " Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-29  8:09   ` Guennadi Liakhovetski
2013-10-29  8:09     ` Guennadi Liakhovetski
2013-10-29  8:09     ` Guennadi Liakhovetski
2013-11-09 12:56     ` Laurent Pinchart
2013-11-09 12:56       ` Laurent Pinchart
2013-11-09 12:56       ` Laurent Pinchart
2013-11-26  2:02       ` Laurent Pinchart
2013-11-26  2:02         ` Laurent Pinchart
2013-11-26  2:02         ` Laurent Pinchart
2013-12-11 12:01         ` Laurent Pinchart
2013-12-11 12:01           ` Laurent Pinchart
2013-12-11 12:01           ` Laurent Pinchart
2013-12-12  1:29           ` Chris Ball
2013-12-12  1:29             ` Chris Ball
2013-12-12  1:29             ` Chris Ball
2013-12-12  2:16             ` Laurent Pinchart
2013-12-12  2:16               ` Laurent Pinchart
2013-12-12  2:16               ` Laurent Pinchart
2013-12-12  2:25               ` Chris Ball
2013-12-12  2:25                 ` Chris Ball
2013-12-12  2:25                 ` Chris Ball
2013-12-14  1:05                 ` Simon Horman
2013-12-14  1:05                   ` Simon Horman
2013-12-14  1:05                   ` Simon Horman
2013-10-28 22:49 ` [PATCH 09/12] usb: gadget: r8a66597-udc: " Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-29  9:47   ` Shimoda, Yoshihiro
2013-10-29  9:47     ` Shimoda, Yoshihiro
2013-11-09 14:09     ` Laurent Pinchart
2013-11-09 14:09       ` Laurent Pinchart
2013-11-11 19:53       ` Felipe Balbi
2013-11-11 19:53         ` Felipe Balbi
2013-11-26  1:59         ` Laurent Pinchart
2013-11-26  1:59           ` Laurent Pinchart
2013-11-26  2:12           ` Felipe Balbi
2013-11-26  2:12             ` Felipe Balbi
2013-11-26  2:16             ` Laurent Pinchart
2013-11-26  2:16               ` Laurent Pinchart
2013-11-26 19:54               ` Felipe Balbi
2013-11-26 19:54                 ` Felipe Balbi
2013-11-26 21:43                 ` Laurent Pinchart
2013-11-26 21:43                   ` Laurent Pinchart
2013-10-28 22:49 ` [PATCH 10/12] usb: r8a66597-hcd: " Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-29  9:47   ` Shimoda, Yoshihiro
2013-10-29  9:47     ` Shimoda, Yoshihiro
2013-11-09 14:12     ` Laurent Pinchart
2013-11-09 14:12       ` Laurent Pinchart
2013-11-09 16:10       ` Greg Kroah-Hartman
2013-11-09 16:10         ` Greg Kroah-Hartman
2013-11-26  2:00         ` Laurent Pinchart
2013-11-26  2:00           ` Laurent Pinchart
2013-11-26  2:36           ` Greg Kroah-Hartman
2013-11-26  2:36             ` Greg Kroah-Hartman
2013-11-26 14:08             ` Laurent Pinchart
2013-11-26 14:08               ` Laurent Pinchart
2013-11-28  8:20               ` Simon Horman
2013-11-28  8:20                 ` Simon Horman
2013-10-28 22:49 ` [PATCH 11/12] fbdev: shmobile-hdmi: " Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-31 10:48   ` Jean-Christophe PLAGNIOL-VILLARD
2013-10-31 10:48     ` Jean-Christophe PLAGNIOL-VILLARD
2013-11-09 14:13     ` Laurent Pinchart
2013-11-09 14:13       ` Laurent Pinchart
2013-11-11 13:34       ` Tomi Valkeinen
2013-11-11 13:34         ` Tomi Valkeinen
2013-10-28 22:49 ` [PATCH 12/12] fbdev: shmobile-lcdcfb: " Laurent Pinchart
2013-10-28 22:49   ` Laurent Pinchart
2013-10-31 10:47   ` Jean-Christophe PLAGNIOL-VILLARD
2013-10-31 10:47     ` Jean-Christophe PLAGNIOL-VILLARD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20131030001018.GF21262@verge.net.au \
    --to=horms@verge.net.au \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.