All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
@ 2013-01-07 16:47 ` Fabio Baltieri
  0 siblings, 0 replies; 16+ messages in thread
From: Fabio Baltieri @ 2013-01-07 16:47 UTC (permalink / raw)
  To: Felipe Balbi, Linus Walleij
  Cc: Ulf Hansson, linux-usb, linux-arm-kernel, linux-kernel, Fabio Baltieri

This patch converts the module to use clk_prepare_enable and
clk_disable_unprepare variants as required by common clock framework.

Without this the system crash during probe function.

Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>
---
 drivers/usb/musb/ux500.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/musb/ux500.c b/drivers/usb/musb/ux500.c
index a27ca1a..0804661 100644
--- a/drivers/usb/musb/ux500.c
+++ b/drivers/usb/musb/ux500.c
@@ -108,7 +108,7 @@ static int ux500_probe(struct platform_device *pdev)
 		goto err3;
 	}
 
-	ret = clk_enable(clk);
+	ret = clk_prepare_enable(clk);
 	if (ret) {
 		dev_err(&pdev->dev, "failed to enable clock\n");
 		goto err4;
@@ -148,7 +148,7 @@ static int ux500_probe(struct platform_device *pdev)
 	return 0;
 
 err5:
-	clk_disable(clk);
+	clk_disable_unprepare(clk);
 
 err4:
 	clk_put(clk);
@@ -168,7 +168,7 @@ static int ux500_remove(struct platform_device *pdev)
 	struct ux500_glue	*glue = platform_get_drvdata(pdev);
 
 	platform_device_unregister(glue->musb);
-	clk_disable(glue->clk);
+	clk_disable_unprepare(glue->clk);
 	clk_put(glue->clk);
 	kfree(glue);
 
@@ -182,7 +182,7 @@ static int ux500_suspend(struct device *dev)
 	struct musb		*musb = glue_to_musb(glue);
 
 	usb_phy_set_suspend(musb->xceiv, 1);
-	clk_disable(glue->clk);
+	clk_disable_unprepare(glue->clk);
 
 	return 0;
 }
@@ -193,7 +193,7 @@ static int ux500_resume(struct device *dev)
 	struct musb		*musb = glue_to_musb(glue);
 	int			ret;
 
-	ret = clk_enable(glue->clk);
+	ret = clk_prepare_enable(glue->clk);
 	if (ret) {
 		dev_err(dev, "failed to enable clock\n");
 		return ret;
-- 
1.7.12.1


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

* [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
@ 2013-01-07 16:47 ` Fabio Baltieri
  0 siblings, 0 replies; 16+ messages in thread
From: Fabio Baltieri @ 2013-01-07 16:47 UTC (permalink / raw)
  To: linux-arm-kernel

This patch converts the module to use clk_prepare_enable and
clk_disable_unprepare variants as required by common clock framework.

Without this the system crash during probe function.

Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>
---
 drivers/usb/musb/ux500.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/usb/musb/ux500.c b/drivers/usb/musb/ux500.c
index a27ca1a..0804661 100644
--- a/drivers/usb/musb/ux500.c
+++ b/drivers/usb/musb/ux500.c
@@ -108,7 +108,7 @@ static int ux500_probe(struct platform_device *pdev)
 		goto err3;
 	}
 
-	ret = clk_enable(clk);
+	ret = clk_prepare_enable(clk);
 	if (ret) {
 		dev_err(&pdev->dev, "failed to enable clock\n");
 		goto err4;
@@ -148,7 +148,7 @@ static int ux500_probe(struct platform_device *pdev)
 	return 0;
 
 err5:
-	clk_disable(clk);
+	clk_disable_unprepare(clk);
 
 err4:
 	clk_put(clk);
@@ -168,7 +168,7 @@ static int ux500_remove(struct platform_device *pdev)
 	struct ux500_glue	*glue = platform_get_drvdata(pdev);
 
 	platform_device_unregister(glue->musb);
-	clk_disable(glue->clk);
+	clk_disable_unprepare(glue->clk);
 	clk_put(glue->clk);
 	kfree(glue);
 
@@ -182,7 +182,7 @@ static int ux500_suspend(struct device *dev)
 	struct musb		*musb = glue_to_musb(glue);
 
 	usb_phy_set_suspend(musb->xceiv, 1);
-	clk_disable(glue->clk);
+	clk_disable_unprepare(glue->clk);
 
 	return 0;
 }
@@ -193,7 +193,7 @@ static int ux500_resume(struct device *dev)
 	struct musb		*musb = glue_to_musb(glue);
 	int			ret;
 
-	ret = clk_enable(glue->clk);
+	ret = clk_prepare_enable(glue->clk);
 	if (ret) {
 		dev_err(dev, "failed to enable clock\n");
 		return ret;
-- 
1.7.12.1

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

* Re: [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
  2013-01-07 16:47 ` Fabio Baltieri
@ 2013-01-10 11:23   ` Linus Walleij
  -1 siblings, 0 replies; 16+ messages in thread
From: Linus Walleij @ 2013-01-10 11:23 UTC (permalink / raw)
  To: Fabio Baltieri
  Cc: Felipe Balbi, Ulf Hansson, linux-usb, linux-arm-kernel,
	linux-kernel, Mian Yousaf KAUKAB

On Mon, Jan 7, 2013 at 5:47 PM, Fabio Baltieri
<fabio.baltieri@linaro.org> wrote:

> This patch converts the module to use clk_prepare_enable and
> clk_disable_unprepare variants as required by common clock framework.
>
> Without this the system crash during probe function.
>
> Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>

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

Yours,
Linus Walleij

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

* [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
@ 2013-01-10 11:23   ` Linus Walleij
  0 siblings, 0 replies; 16+ messages in thread
From: Linus Walleij @ 2013-01-10 11:23 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Jan 7, 2013 at 5:47 PM, Fabio Baltieri
<fabio.baltieri@linaro.org> wrote:

> This patch converts the module to use clk_prepare_enable and
> clk_disable_unprepare variants as required by common clock framework.
>
> Without this the system crash during probe function.
>
> Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>

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

Yours,
Linus Walleij

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

* Re: [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
  2013-01-10 11:23   ` Linus Walleij
@ 2013-01-10 13:38     ` Fabio Baltieri
  -1 siblings, 0 replies; 16+ messages in thread
From: Fabio Baltieri @ 2013-01-10 13:38 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Felipe Balbi, Ulf Hansson, linux-usb, linux-arm-kernel,
	linux-kernel, Mian Yousaf KAUKAB

Hello Linus,

On Thu, Jan 10, 2013 at 12:23:32PM +0100, Linus Walleij wrote:
> On Mon, Jan 7, 2013 at 5:47 PM, Fabio Baltieri
> <fabio.baltieri@linaro.org> wrote:
> 
> > This patch converts the module to use clk_prepare_enable and
> > clk_disable_unprepare variants as required by common clock framework.
> >
> > Without this the system crash during probe function.
> >
> > Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>
> 
> Acked-by: Linus Walleij <linus.walleij@linaro.org>

Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,
do you think it may make sense to add this driver to u8500_defconfig?  I
can send a patch if you say so...

Thanks,
Fabio

-- 
Fabio Baltieri

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

* [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
@ 2013-01-10 13:38     ` Fabio Baltieri
  0 siblings, 0 replies; 16+ messages in thread
From: Fabio Baltieri @ 2013-01-10 13:38 UTC (permalink / raw)
  To: linux-arm-kernel

Hello Linus,

On Thu, Jan 10, 2013 at 12:23:32PM +0100, Linus Walleij wrote:
> On Mon, Jan 7, 2013 at 5:47 PM, Fabio Baltieri
> <fabio.baltieri@linaro.org> wrote:
> 
> > This patch converts the module to use clk_prepare_enable and
> > clk_disable_unprepare variants as required by common clock framework.
> >
> > Without this the system crash during probe function.
> >
> > Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>
> 
> Acked-by: Linus Walleij <linus.walleij@linaro.org>

Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,
do you think it may make sense to add this driver to u8500_defconfig?  I
can send a patch if you say so...

Thanks,
Fabio

-- 
Fabio Baltieri

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

* Re: [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
  2013-01-10 13:38     ` Fabio Baltieri
@ 2013-01-17 10:46       ` Linus Walleij
  -1 siblings, 0 replies; 16+ messages in thread
From: Linus Walleij @ 2013-01-17 10:46 UTC (permalink / raw)
  To: Fabio Baltieri, Linus Walleij, Felipe Balbi, Ulf Hansson,
	linux-usb, linux-arm-kernel, linux-kernel, Mian Yousaf KAUKAB

On Thu, Jan 10, 2013 at 2:38 PM, Fabio Baltieri
<fabio.baltieri@linaro.org> wrote:
> On Thu, Jan 10, 2013 at 12:23:32PM +0100, Linus Walleij wrote:
>> On Mon, Jan 7, 2013 at 5:47 PM, Fabio Baltieri
>> <fabio.baltieri@linaro.org> wrote:
>>
>> > This patch converts the module to use clk_prepare_enable and
>> > clk_disable_unprepare variants as required by common clock framework.
>> >
>> > Without this the system crash during probe function.
>> >
>> > Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>
>>
>> Acked-by: Linus Walleij <linus.walleij@linaro.org>
>
> Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,

Then it should have Cc: stable@kernel.org..

> do you think it may make sense to add this driver to u8500_defconfig?  I
> can send a patch if you say so...

Yes, can you make a patch updating the defconfig and also enabling
a few other things like charging maybe? Sync with Lee.

Yours,
Linus Walleij

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

* [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
@ 2013-01-17 10:46       ` Linus Walleij
  0 siblings, 0 replies; 16+ messages in thread
From: Linus Walleij @ 2013-01-17 10:46 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jan 10, 2013 at 2:38 PM, Fabio Baltieri
<fabio.baltieri@linaro.org> wrote:
> On Thu, Jan 10, 2013 at 12:23:32PM +0100, Linus Walleij wrote:
>> On Mon, Jan 7, 2013 at 5:47 PM, Fabio Baltieri
>> <fabio.baltieri@linaro.org> wrote:
>>
>> > This patch converts the module to use clk_prepare_enable and
>> > clk_disable_unprepare variants as required by common clock framework.
>> >
>> > Without this the system crash during probe function.
>> >
>> > Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>
>>
>> Acked-by: Linus Walleij <linus.walleij@linaro.org>
>
> Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,

Then it should have Cc: stable at kernel.org..

> do you think it may make sense to add this driver to u8500_defconfig?  I
> can send a patch if you say so...

Yes, can you make a patch updating the defconfig and also enabling
a few other things like charging maybe? Sync with Lee.

Yours,
Linus Walleij

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

* Re: [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
  2013-01-17 10:46       ` Linus Walleij
@ 2013-01-17 10:51         ` Felipe Balbi
  -1 siblings, 0 replies; 16+ messages in thread
From: Felipe Balbi @ 2013-01-17 10:51 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Fabio Baltieri, Felipe Balbi, Ulf Hansson, linux-usb,
	linux-arm-kernel, linux-kernel, Mian Yousaf KAUKAB

[-- Attachment #1: Type: text/plain, Size: 848 bytes --]

On Thu, Jan 17, 2013 at 11:46:30AM +0100, Linus Walleij wrote:
> On Thu, Jan 10, 2013 at 2:38 PM, Fabio Baltieri
> <fabio.baltieri@linaro.org> wrote:
> > On Thu, Jan 10, 2013 at 12:23:32PM +0100, Linus Walleij wrote:
> >> On Mon, Jan 7, 2013 at 5:47 PM, Fabio Baltieri
> >> <fabio.baltieri@linaro.org> wrote:
> >>
> >> > This patch converts the module to use clk_prepare_enable and
> >> > clk_disable_unprepare variants as required by common clock framework.
> >> >
> >> > Without this the system crash during probe function.
> >> >
> >> > Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>
> >>
> >> Acked-by: Linus Walleij <linus.walleij@linaro.org>
> >
> > Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,
> 
> Then it should have Cc: stable@kernel.org..

just added to my tree.

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
@ 2013-01-17 10:51         ` Felipe Balbi
  0 siblings, 0 replies; 16+ messages in thread
From: Felipe Balbi @ 2013-01-17 10:51 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jan 17, 2013 at 11:46:30AM +0100, Linus Walleij wrote:
> On Thu, Jan 10, 2013 at 2:38 PM, Fabio Baltieri
> <fabio.baltieri@linaro.org> wrote:
> > On Thu, Jan 10, 2013 at 12:23:32PM +0100, Linus Walleij wrote:
> >> On Mon, Jan 7, 2013 at 5:47 PM, Fabio Baltieri
> >> <fabio.baltieri@linaro.org> wrote:
> >>
> >> > This patch converts the module to use clk_prepare_enable and
> >> > clk_disable_unprepare variants as required by common clock framework.
> >> >
> >> > Without this the system crash during probe function.
> >> >
> >> > Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>
> >>
> >> Acked-by: Linus Walleij <linus.walleij@linaro.org>
> >
> > Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,
> 
> Then it should have Cc: stable at kernel.org..

just added to my tree.

-- 
balbi
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130117/c7c4d190/attachment.sig>

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

* Re: [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
  2013-01-17 10:51         ` Felipe Balbi
@ 2013-01-17 12:57           ` Fabio Baltieri
  -1 siblings, 0 replies; 16+ messages in thread
From: Fabio Baltieri @ 2013-01-17 12:57 UTC (permalink / raw)
  To: Felipe Balbi
  Cc: Linus Walleij, Ulf Hansson, linux-usb, linux-arm-kernel,
	linux-kernel, Mian Yousaf KAUKAB

On Thu, Jan 17, 2013 at 12:51:04PM +0200, Felipe Balbi wrote:
> > > Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,
> > 
> > Then it should have Cc: stable@kernel.org..
> 
> just added to my tree.

Hi Felipe, thanks for adding the stable tag to the patch, but I actually
made a bit of confusion with the versions, so I double checked and it
turns out this is really needed on v3.7 stable, not v3.6.

Will you be so kind to remove v3.6 from the stable tag from this
patch?

Thanks and sorry for the added noise!
Fabio

-- 
Fabio Baltieri

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

* [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
@ 2013-01-17 12:57           ` Fabio Baltieri
  0 siblings, 0 replies; 16+ messages in thread
From: Fabio Baltieri @ 2013-01-17 12:57 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jan 17, 2013 at 12:51:04PM +0200, Felipe Balbi wrote:
> > > Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,
> > 
> > Then it should have Cc: stable at kernel.org..
> 
> just added to my tree.

Hi Felipe, thanks for adding the stable tag to the patch, but I actually
made a bit of confusion with the versions, so I double checked and it
turns out this is really needed on v3.7 stable, not v3.6.

Will you be so kind to remove v3.6 from the stable tag from this
patch?

Thanks and sorry for the added noise!
Fabio

-- 
Fabio Baltieri

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

* Re: [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
  2013-01-17 10:46       ` Linus Walleij
@ 2013-01-17 13:12         ` Sergei Shtylyov
  -1 siblings, 0 replies; 16+ messages in thread
From: Sergei Shtylyov @ 2013-01-17 13:12 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Fabio Baltieri, Felipe Balbi, Ulf Hansson, linux-usb,
	linux-arm-kernel, linux-kernel, Mian Yousaf KAUKAB

Hello.

On 17-01-2013 14:46, Linus Walleij wrote:

>>> <fabio.baltieri@linaro.org> wrote:

>>>> This patch converts the module to use clk_prepare_enable and
>>>> clk_disable_unprepare variants as required by common clock framework.

>>>> Without this the system crash during probe function.

>>>> Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>

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

>> Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,

> Then it should have Cc: stable@kernel.org..

    The new address is stable@vger.kernel.org.

WBR, Sergei


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

* [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
@ 2013-01-17 13:12         ` Sergei Shtylyov
  0 siblings, 0 replies; 16+ messages in thread
From: Sergei Shtylyov @ 2013-01-17 13:12 UTC (permalink / raw)
  To: linux-arm-kernel

Hello.

On 17-01-2013 14:46, Linus Walleij wrote:

>>> <fabio.baltieri@linaro.org> wrote:

>>>> This patch converts the module to use clk_prepare_enable and
>>>> clk_disable_unprepare variants as required by common clock framework.

>>>> Without this the system crash during probe function.

>>>> Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>

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

>> Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,

> Then it should have Cc: stable at kernel.org..

    The new address is stable at vger.kernel.org.

WBR, Sergei

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

* Re: [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
  2013-01-17 12:57           ` Fabio Baltieri
@ 2013-01-17 13:15             ` Felipe Balbi
  -1 siblings, 0 replies; 16+ messages in thread
From: Felipe Balbi @ 2013-01-17 13:15 UTC (permalink / raw)
  To: Fabio Baltieri, Felipe Balbi, Linus Walleij, Ulf Hansson,
	linux-usb, linux-arm-kernel, linux-kernel, Mian Yousaf KAUKAB

[-- Attachment #1: Type: text/plain, Size: 819 bytes --]

Hi,

On Thu, Jan 17, 2013 at 01:57:02PM +0100, Fabio Baltieri wrote:
> On Thu, Jan 17, 2013 at 12:51:04PM +0200, Felipe Balbi wrote:
> > > > Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,
> > > 
> > > Then it should have Cc: stable@kernel.org..
> > 
> > just added to my tree.
> 
> Hi Felipe, thanks for adding the stable tag to the patch, but I actually
> made a bit of confusion with the versions, so I double checked and it
> turns out this is really needed on v3.7 stable, not v3.6.
> 
> Will you be so kind to remove v3.6 from the stable tag from this
> patch?

rebasing a "stable" branch is the most annoying you can ask me to do, I
will do it this time and hope I don't break anyone tracking my branches.

Next time, please be more careful.

cheers

-- 
balbi

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare
@ 2013-01-17 13:15             ` Felipe Balbi
  0 siblings, 0 replies; 16+ messages in thread
From: Felipe Balbi @ 2013-01-17 13:15 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

On Thu, Jan 17, 2013 at 01:57:02PM +0100, Fabio Baltieri wrote:
> On Thu, Jan 17, 2013 at 12:51:04PM +0200, Felipe Balbi wrote:
> > > > Thanks for the ACK.  This bug was here unnoticed since 3.6 merge window,
> > > 
> > > Then it should have Cc: stable at kernel.org..
> > 
> > just added to my tree.
> 
> Hi Felipe, thanks for adding the stable tag to the patch, but I actually
> made a bit of confusion with the versions, so I double checked and it
> turns out this is really needed on v3.7 stable, not v3.6.
> 
> Will you be so kind to remove v3.6 from the stable tag from this
> patch?

rebasing a "stable" branch is the most annoying you can ask me to do, I
will do it this time and hope I don't break anyone tracking my branches.

Next time, please be more careful.

cheers

-- 
balbi
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20130117/71363da5/attachment.sig>

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

end of thread, other threads:[~2013-01-17 13:15 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-07 16:47 [PATCH] usb: musb: ux500: use clk_prepare_enable and clk_disable_unprepare Fabio Baltieri
2013-01-07 16:47 ` Fabio Baltieri
2013-01-10 11:23 ` Linus Walleij
2013-01-10 11:23   ` Linus Walleij
2013-01-10 13:38   ` Fabio Baltieri
2013-01-10 13:38     ` Fabio Baltieri
2013-01-17 10:46     ` Linus Walleij
2013-01-17 10:46       ` Linus Walleij
2013-01-17 10:51       ` Felipe Balbi
2013-01-17 10:51         ` Felipe Balbi
2013-01-17 12:57         ` Fabio Baltieri
2013-01-17 12:57           ` Fabio Baltieri
2013-01-17 13:15           ` Felipe Balbi
2013-01-17 13:15             ` Felipe Balbi
2013-01-17 13:12       ` Sergei Shtylyov
2013-01-17 13:12         ` Sergei Shtylyov

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.