All of lore.kernel.org
 help / color / mirror / Atom feed
From: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
To: linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 07/12] mmc: sh_mmcif: Convert to clk_prepare/unprepare
Date: Wed, 30 Oct 2013 22:23:37 +0000	[thread overview]
Message-ID: <Pine.LNX.4.64.1310302322480.25391@axis700.grange> (raw)
In-Reply-To: <Pine.LNX.4.64.1310290910160.8404@axis700.grange>

On Tue, 29 Oct 2013, Guennadi Liakhovetski wrote:

> On Mon, 28 Oct 2013, Laurent Pinchart wrote:
> 
> > Turn clk_enable() and clk_disable() calls into clk_prepare_enable() and
> > clk_disable_unprepare() to get ready for the migration to the common
> > clock framework.
> > 
> > Cc: Chris Ball <cjb@laptop.org>
> > Cc: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>
> > Cc: linux-mmc@vger.kernel.org
> > Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> 
> Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>

Sorry, I just realised, that an identical patch

http://patches.linaro.org/21212/

has been submitted prior to this one, so, we should really take the other 
one.

Thanks
Guennadi
> 
> > ---
> >  drivers/mmc/host/sh_mmcif.c | 12 ++++++------
> >  1 file changed, 6 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/mmc/host/sh_mmcif.c b/drivers/mmc/host/sh_mmcif.c
> > index 36629a0..37a6c57 100644
> > --- a/drivers/mmc/host/sh_mmcif.c
> > +++ b/drivers/mmc/host/sh_mmcif.c
> > @@ -964,7 +964,7 @@ static void sh_mmcif_request(struct mmc_host *mmc, struct mmc_request *mrq)
> >  
> >  static int sh_mmcif_clk_update(struct sh_mmcif_host *host)
> >  {
> > -	int ret = clk_enable(host->hclk);
> > +	int ret = clk_prepare_enable(host->hclk);
> >  
> >  	if (!ret) {
> >  		host->clk = clk_get_rate(host->hclk);
> > @@ -1018,7 +1018,7 @@ static void sh_mmcif_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
> >  		}
> >  		if (host->power) {
> >  			pm_runtime_put_sync(&host->pd->dev);
> > -			clk_disable(host->hclk);
> > +			clk_disable_unprepare(host->hclk);
> >  			host->power = false;
> >  			if (ios->power_mode = MMC_POWER_OFF)
> >  				sh_mmcif_set_power(host, ios);
> > @@ -1466,7 +1466,7 @@ static int sh_mmcif_probe(struct platform_device *pdev)
> >  
> >  	mutex_init(&host->thread_lock);
> >  
> > -	clk_disable(host->hclk);
> > +	clk_disable_unprepare(host->hclk);
> >  	ret = mmc_add_host(mmc);
> >  	if (ret < 0)
> >  		goto emmcaddh;
> > @@ -1487,7 +1487,7 @@ ereqirq1:
> >  ereqirq0:
> >  	pm_runtime_suspend(&pdev->dev);
> >  eresume:
> > -	clk_disable(host->hclk);
> > +	clk_disable_unprepare(host->hclk);
> >  eclkupdate:
> >  	clk_put(host->hclk);
> >  eclkget:
> > @@ -1505,7 +1505,7 @@ static int sh_mmcif_remove(struct platform_device *pdev)
> >  	int irq[2];
> >  
> >  	host->dying = true;
> > -	clk_enable(host->hclk);
> > +	clk_prepare_enable(host->hclk);
> >  	pm_runtime_get_sync(&pdev->dev);
> >  
> >  	dev_pm_qos_hide_latency_limit(&pdev->dev);
> > @@ -1530,7 +1530,7 @@ static int sh_mmcif_remove(struct platform_device *pdev)
> >  	if (irq[1] >= 0)
> >  		free_irq(irq[1], host);
> >  
> > -	clk_disable(host->hclk);
> > +	clk_disable_unprepare(host->hclk);
> >  	mmc_free_host(host->mmc);
> >  	pm_runtime_put_sync(&pdev->dev);
> >  	pm_runtime_disable(&pdev->dev);
> > -- 
> > 1.8.1.5
> > 
> 
> ---
> Guennadi Liakhovetski, Ph.D.
> Freelance Open-Source Software Developer
> http://www.open-technology.de/
> 

---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

WARNING: multiple messages have this Message-ID (diff)
From: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
To: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Cc: linux-arm-kernel@lists.infradead.org, linux-sh@vger.kernel.org,
	Mike Turquette <mturquette@linaro.org>,
	Chris Ball <cjb@laptop.org>,
	Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>,
	linux-mmc@vger.kernel.org
Subject: Re: [PATCH 07/12] mmc: sh_mmcif: Convert to clk_prepare/unprepare
Date: Wed, 30 Oct 2013 23:23:37 +0100 (CET)	[thread overview]
Message-ID: <Pine.LNX.4.64.1310302322480.25391@axis700.grange> (raw)
In-Reply-To: <Pine.LNX.4.64.1310290910160.8404@axis700.grange>

On Tue, 29 Oct 2013, Guennadi Liakhovetski wrote:

> On Mon, 28 Oct 2013, Laurent Pinchart wrote:
> 
> > Turn clk_enable() and clk_disable() calls into clk_prepare_enable() and
> > clk_disable_unprepare() to get ready for the migration to the common
> > clock framework.
> > 
> > Cc: Chris Ball <cjb@laptop.org>
> > Cc: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>
> > Cc: linux-mmc@vger.kernel.org
> > Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> 
> Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>

Sorry, I just realised, that an identical patch

http://patches.linaro.org/21212/

has been submitted prior to this one, so, we should really take the other 
one.

Thanks
Guennadi
> 
> > ---
> >  drivers/mmc/host/sh_mmcif.c | 12 ++++++------
> >  1 file changed, 6 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/mmc/host/sh_mmcif.c b/drivers/mmc/host/sh_mmcif.c
> > index 36629a0..37a6c57 100644
> > --- a/drivers/mmc/host/sh_mmcif.c
> > +++ b/drivers/mmc/host/sh_mmcif.c
> > @@ -964,7 +964,7 @@ static void sh_mmcif_request(struct mmc_host *mmc, struct mmc_request *mrq)
> >  
> >  static int sh_mmcif_clk_update(struct sh_mmcif_host *host)
> >  {
> > -	int ret = clk_enable(host->hclk);
> > +	int ret = clk_prepare_enable(host->hclk);
> >  
> >  	if (!ret) {
> >  		host->clk = clk_get_rate(host->hclk);
> > @@ -1018,7 +1018,7 @@ static void sh_mmcif_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
> >  		}
> >  		if (host->power) {
> >  			pm_runtime_put_sync(&host->pd->dev);
> > -			clk_disable(host->hclk);
> > +			clk_disable_unprepare(host->hclk);
> >  			host->power = false;
> >  			if (ios->power_mode == MMC_POWER_OFF)
> >  				sh_mmcif_set_power(host, ios);
> > @@ -1466,7 +1466,7 @@ static int sh_mmcif_probe(struct platform_device *pdev)
> >  
> >  	mutex_init(&host->thread_lock);
> >  
> > -	clk_disable(host->hclk);
> > +	clk_disable_unprepare(host->hclk);
> >  	ret = mmc_add_host(mmc);
> >  	if (ret < 0)
> >  		goto emmcaddh;
> > @@ -1487,7 +1487,7 @@ ereqirq1:
> >  ereqirq0:
> >  	pm_runtime_suspend(&pdev->dev);
> >  eresume:
> > -	clk_disable(host->hclk);
> > +	clk_disable_unprepare(host->hclk);
> >  eclkupdate:
> >  	clk_put(host->hclk);
> >  eclkget:
> > @@ -1505,7 +1505,7 @@ static int sh_mmcif_remove(struct platform_device *pdev)
> >  	int irq[2];
> >  
> >  	host->dying = true;
> > -	clk_enable(host->hclk);
> > +	clk_prepare_enable(host->hclk);
> >  	pm_runtime_get_sync(&pdev->dev);
> >  
> >  	dev_pm_qos_hide_latency_limit(&pdev->dev);
> > @@ -1530,7 +1530,7 @@ static int sh_mmcif_remove(struct platform_device *pdev)
> >  	if (irq[1] >= 0)
> >  		free_irq(irq[1], host);
> >  
> > -	clk_disable(host->hclk);
> > +	clk_disable_unprepare(host->hclk);
> >  	mmc_free_host(host->mmc);
> >  	pm_runtime_put_sync(&pdev->dev);
> >  	pm_runtime_disable(&pdev->dev);
> > -- 
> > 1.8.1.5
> > 
> 
> ---
> Guennadi Liakhovetski, Ph.D.
> Freelance Open-Source Software Developer
> http://www.open-technology.de/
> 

---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

WARNING: multiple messages have this Message-ID (diff)
From: g.liakhovetski@gmx.de (Guennadi Liakhovetski)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 07/12] mmc: sh_mmcif: Convert to clk_prepare/unprepare
Date: Wed, 30 Oct 2013 23:23:37 +0100 (CET)	[thread overview]
Message-ID: <Pine.LNX.4.64.1310302322480.25391@axis700.grange> (raw)
In-Reply-To: <Pine.LNX.4.64.1310290910160.8404@axis700.grange>

On Tue, 29 Oct 2013, Guennadi Liakhovetski wrote:

> On Mon, 28 Oct 2013, Laurent Pinchart wrote:
> 
> > Turn clk_enable() and clk_disable() calls into clk_prepare_enable() and
> > clk_disable_unprepare() to get ready for the migration to the common
> > clock framework.
> > 
> > Cc: Chris Ball <cjb@laptop.org>
> > Cc: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>
> > Cc: linux-mmc at vger.kernel.org
> > Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> 
> Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>

Sorry, I just realised, that an identical patch

http://patches.linaro.org/21212/

has been submitted prior to this one, so, we should really take the other 
one.

Thanks
Guennadi
> 
> > ---
> >  drivers/mmc/host/sh_mmcif.c | 12 ++++++------
> >  1 file changed, 6 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/mmc/host/sh_mmcif.c b/drivers/mmc/host/sh_mmcif.c
> > index 36629a0..37a6c57 100644
> > --- a/drivers/mmc/host/sh_mmcif.c
> > +++ b/drivers/mmc/host/sh_mmcif.c
> > @@ -964,7 +964,7 @@ static void sh_mmcif_request(struct mmc_host *mmc, struct mmc_request *mrq)
> >  
> >  static int sh_mmcif_clk_update(struct sh_mmcif_host *host)
> >  {
> > -	int ret = clk_enable(host->hclk);
> > +	int ret = clk_prepare_enable(host->hclk);
> >  
> >  	if (!ret) {
> >  		host->clk = clk_get_rate(host->hclk);
> > @@ -1018,7 +1018,7 @@ static void sh_mmcif_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
> >  		}
> >  		if (host->power) {
> >  			pm_runtime_put_sync(&host->pd->dev);
> > -			clk_disable(host->hclk);
> > +			clk_disable_unprepare(host->hclk);
> >  			host->power = false;
> >  			if (ios->power_mode == MMC_POWER_OFF)
> >  				sh_mmcif_set_power(host, ios);
> > @@ -1466,7 +1466,7 @@ static int sh_mmcif_probe(struct platform_device *pdev)
> >  
> >  	mutex_init(&host->thread_lock);
> >  
> > -	clk_disable(host->hclk);
> > +	clk_disable_unprepare(host->hclk);
> >  	ret = mmc_add_host(mmc);
> >  	if (ret < 0)
> >  		goto emmcaddh;
> > @@ -1487,7 +1487,7 @@ ereqirq1:
> >  ereqirq0:
> >  	pm_runtime_suspend(&pdev->dev);
> >  eresume:
> > -	clk_disable(host->hclk);
> > +	clk_disable_unprepare(host->hclk);
> >  eclkupdate:
> >  	clk_put(host->hclk);
> >  eclkget:
> > @@ -1505,7 +1505,7 @@ static int sh_mmcif_remove(struct platform_device *pdev)
> >  	int irq[2];
> >  
> >  	host->dying = true;
> > -	clk_enable(host->hclk);
> > +	clk_prepare_enable(host->hclk);
> >  	pm_runtime_get_sync(&pdev->dev);
> >  
> >  	dev_pm_qos_hide_latency_limit(&pdev->dev);
> > @@ -1530,7 +1530,7 @@ static int sh_mmcif_remove(struct platform_device *pdev)
> >  	if (irq[1] >= 0)
> >  		free_irq(irq[1], host);
> >  
> > -	clk_disable(host->hclk);
> > +	clk_disable_unprepare(host->hclk);
> >  	mmc_free_host(host->mmc);
> >  	pm_runtime_put_sync(&pdev->dev);
> >  	pm_runtime_disable(&pdev->dev);
> > -- 
> > 1.8.1.5
> > 
> 
> ---
> Guennadi Liakhovetski, Ph.D.
> Freelance Open-Source Software Developer
> http://www.open-technology.de/
> 

---
Guennadi Liakhovetski, Ph.D.
Freelance Open-Source Software Developer
http://www.open-technology.de/

  reply	other threads:[~2013-10-30 22:23 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
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 [this message]
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=Pine.LNX.4.64.1310302322480.25391@axis700.grange \
    --to=g.liakhovetski@gmx.de \
    --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.