All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
@ 2012-05-11  8:41 Stefan Roese
  2012-05-14  3:34 ` Viresh Kumar
  0 siblings, 1 reply; 11+ messages in thread
From: Stefan Roese @ 2012-05-11  8:41 UTC (permalink / raw)
  To: linux-arm-kernel

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Viresh Kumar <viresh.kumar@st.com>
Cc: "Mike Turquette" <mturquette@ti.com>
---
 drivers/clk/spear/spear6xx_clock.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/spear/spear6xx_clock.c b/drivers/clk/spear/spear6xx_clock.c
index f9a20b3..bf33c1d 100644
--- a/drivers/clk/spear/spear6xx_clock.c
+++ b/drivers/clk/spear/spear6xx_clock.c
@@ -298,7 +298,7 @@ void __init spear6xx_clk_init(void)
 
 	clk = clk_register_gate(NULL, "gmac_clk", "ahb_clk", 0, PERIP1_CLK_ENB,
 			GMAC_CLK_ENB, 0, &_lock);
-	clk_register_clkdev(clk, NULL, "gmac");
+	clk_register_clkdev(clk, NULL, "e0800000.ethernet");
 
 	clk = clk_register_gate(NULL, "i2c_clk", "ahb_clk", 0, PERIP1_CLK_ENB,
 			I2C_CLK_ENB, 0, &_lock);
-- 
1.7.10.1

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

* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
  2012-05-11  8:41 [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing Stefan Roese
@ 2012-05-14  3:34 ` Viresh Kumar
  2012-05-16  4:58   ` Turquette, Mike
  0 siblings, 1 reply; 11+ messages in thread
From: Viresh Kumar @ 2012-05-14  3:34 UTC (permalink / raw)
  To: linux-arm-kernel

On 5/11/2012 2:11 PM, Stefan Roese wrote:
> diff --git a/drivers/clk/spear/spear6xx_clock.c b/drivers/clk/spear/spear6xx_clock.c
> index f9a20b3..bf33c1d 100644
> --- a/drivers/clk/spear/spear6xx_clock.c
> +++ b/drivers/clk/spear/spear6xx_clock.c
> @@ -298,7 +298,7 @@ void __init spear6xx_clk_init(void)
>  
>  	clk = clk_register_gate(NULL, "gmac_clk", "ahb_clk", 0, PERIP1_CLK_ENB,
>  			GMAC_CLK_ENB, 0, &_lock);
> -	clk_register_clkdev(clk, NULL, "gmac");
> +	clk_register_clkdev(clk, NULL, "e0800000.ethernet");
>  
>  	clk = clk_register_gate(NULL, "i2c_clk", "ahb_clk", 0, PERIP1_CLK_ENB,
>  			I2C_CLK_ENB, 0, &_lock);

Acked-by: Viresh Kumar <viresh.kumar@st.com>

-- 
viresh

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

* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
  2012-05-14  3:34 ` Viresh Kumar
@ 2012-05-16  4:58   ` Turquette, Mike
  2012-05-16  5:56     ` viresh kumar
  0 siblings, 1 reply; 11+ messages in thread
From: Turquette, Mike @ 2012-05-16  4:58 UTC (permalink / raw)
  To: linux-arm-kernel

On Sun, May 13, 2012 at 8:34 PM, Viresh Kumar <viresh.kumar@st.com> wrote:
> On 5/11/2012 2:11 PM, Stefan Roese wrote:
>> diff --git a/drivers/clk/spear/spear6xx_clock.c b/drivers/clk/spear/spear6xx_clock.c
>> index f9a20b3..bf33c1d 100644
>> --- a/drivers/clk/spear/spear6xx_clock.c
>> +++ b/drivers/clk/spear/spear6xx_clock.c
>> @@ -298,7 +298,7 @@ void __init spear6xx_clk_init(void)
>>
>> ? ? ? clk = clk_register_gate(NULL, "gmac_clk", "ahb_clk", 0, PERIP1_CLK_ENB,
>> ? ? ? ? ? ? ? ? ? ? ? GMAC_CLK_ENB, 0, &_lock);
>> - ? ? clk_register_clkdev(clk, NULL, "gmac");
>> + ? ? clk_register_clkdev(clk, NULL, "e0800000.ethernet");
>>
>> ? ? ? clk = clk_register_gate(NULL, "i2c_clk", "ahb_clk", 0, PERIP1_CLK_ENB,
>> ? ? ? ? ? ? ? ? ? ? ? I2C_CLK_ENB, 0, &_lock);
>
> Acked-by: Viresh Kumar <viresh.kumar@st.com>

Do you want me to take this?  Spear didn't originally go through me
but I can take it if that is the intent.

Regards,
Mike

>
> --
> viresh

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

* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
  2012-05-16  4:58   ` Turquette, Mike
@ 2012-05-16  5:56     ` viresh kumar
  2012-05-16  6:07       ` Turquette, Mike
  2012-06-06  6:46       ` Stefan Roese
  0 siblings, 2 replies; 11+ messages in thread
From: viresh kumar @ 2012-05-16  5:56 UTC (permalink / raw)
  To: linux-arm-kernel

On May 16, 2012 10:32 AM, "Turquette, Mike" <mturquette@ti.com> wrote:
>
> On Sun, May 13, 2012 at 8:34 PM, Viresh Kumar <viresh.kumar@st.com> wrote:
> > On 5/11/2012 2:11 PM, Stefan Roese wrote:
> >> diff --git a/drivers/clk/spear/spear6xx_clock.c
b/drivers/clk/spear/spear6xx_clock.c
> >> index f9a20b3..bf33c1d 100644
> >> --- a/drivers/clk/spear/spear6xx_clock.c
> >> +++ b/drivers/clk/spear/spear6xx_clock.c
> >> @@ -298,7 +298,7 @@ void __init spear6xx_clk_init(void)
> >>
> >>       clk = clk_register_gate(NULL, "gmac_clk", "ahb_clk", 0,
PERIP1_CLK_ENB,
> >>                       GMAC_CLK_ENB, 0, &_lock);
> >> -     clk_register_clkdev(clk, NULL, "gmac");
> >> +     clk_register_clkdev(clk, NULL, "e0800000.ethernet");
> >>
> >>       clk = clk_register_gate(NULL, "i2c_clk", "ahb_clk", 0,
PERIP1_CLK_ENB,
> >>                       I2C_CLK_ENB, 0, &_lock);
> >
> > Acked-by: Viresh Kumar <viresh.kumar@st.com>
>
> Do you want me to take this?  Spear didn't originally go through me
> but I can take it if that is the intent.
>

Sure. Go ahead.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20120516/178decb8/attachment-0001.html>

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

* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
  2012-05-16  5:56     ` viresh kumar
@ 2012-05-16  6:07       ` Turquette, Mike
  2012-06-06  6:46       ` Stefan Roese
  1 sibling, 0 replies; 11+ messages in thread
From: Turquette, Mike @ 2012-05-16  6:07 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, May 15, 2012 at 10:56 PM, viresh kumar <viresh.linux@gmail.com> wrote:
>
> On May 16, 2012 10:32 AM, "Turquette, Mike" <mturquette@ti.com> wrote:
>>
>> On Sun, May 13, 2012 at 8:34 PM, Viresh Kumar <viresh.kumar@st.com> wrote:
>> > On 5/11/2012 2:11 PM, Stefan Roese wrote:
>> >> diff --git a/drivers/clk/spear/spear6xx_clock.c
>> >> b/drivers/clk/spear/spear6xx_clock.c
>> >> index f9a20b3..bf33c1d 100644
>> >> --- a/drivers/clk/spear/spear6xx_clock.c
>> >> +++ b/drivers/clk/spear/spear6xx_clock.c
>> >> @@ -298,7 +298,7 @@ void __init spear6xx_clk_init(void)
>> >>
>> >> ? ? ? clk = clk_register_gate(NULL, "gmac_clk", "ahb_clk", 0,
>> >> PERIP1_CLK_ENB,
>> >> ? ? ? ? ? ? ? ? ? ? ? GMAC_CLK_ENB, 0, &_lock);
>> >> - ? ? clk_register_clkdev(clk, NULL, "gmac");
>> >> + ? ? clk_register_clkdev(clk, NULL, "e0800000.ethernet");
>> >>
>> >> ? ? ? clk = clk_register_gate(NULL, "i2c_clk", "ahb_clk", 0,
>> >> PERIP1_CLK_ENB,
>> >> ? ? ? ? ? ? ? ? ? ? ? I2C_CLK_ENB, 0, &_lock);
>> >
>> > Acked-by: Viresh Kumar <viresh.kumar@st.com>
>>
>> Do you want me to take this? ?Spear didn't originally go through me
>> but I can take it if that is the intent.
>>
>
> Sure. Go ahead.

Oops.  I'm working too late.  Wasn't thinking.

I don't have spear in my clk-next branch (since clk-next is stable and
the spear clock stuff went straight to arm-soc).  Instead of having me
make a new branch based on arm-soc's latest can you just send this
Arnd/Olof?

Thanks,
Mike

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

* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
  2012-05-16  5:56     ` viresh kumar
  2012-05-16  6:07       ` Turquette, Mike
@ 2012-06-06  6:46       ` Stefan Roese
  2012-06-18  9:09         ` Stefan Roese
  1 sibling, 1 reply; 11+ messages in thread
From: Stefan Roese @ 2012-06-06  6:46 UTC (permalink / raw)
  To: linux-arm-kernel

On Wednesday 16 May 2012 07:56:49 viresh kumar wrote:
> > > Acked-by: Viresh Kumar <viresh.kumar@st.com>
> > 
> > Do you want me to take this?  Spear didn't originally go through me
> > but I can take it if that is the intent.
> 
> Sure. Go ahead.

Ping.

Thanks,
Stefan

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

* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
  2012-06-06  6:46       ` Stefan Roese
@ 2012-06-18  9:09         ` Stefan Roese
  2012-06-18 17:20           ` Mike Turquette
  0 siblings, 1 reply; 11+ messages in thread
From: Stefan Roese @ 2012-06-18  9:09 UTC (permalink / raw)
  To: linux-arm-kernel

On Wednesday 06 June 2012 08:46:07 Stefan Roese wrote:
> On Wednesday 16 May 2012 07:56:49 viresh kumar wrote:
> > > > Acked-by: Viresh Kumar <viresh.kumar@st.com>
> > > 
> > > Do you want me to take this?  Spear didn't originally go through me
> > > but I can take it if that is the intent.
> > 
> > Sure. Go ahead.
> 
> Ping.

Ping again (this is a real show-stopper for SPEAr600 in v3.5!).

Thanks,
Stefan

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

* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
  2012-06-18  9:09         ` Stefan Roese
@ 2012-06-18 17:20           ` Mike Turquette
  2012-06-19  5:19             ` Stefan Roese
  2012-06-19 11:18             ` Arnd Bergmann
  0 siblings, 2 replies; 11+ messages in thread
From: Mike Turquette @ 2012-06-18 17:20 UTC (permalink / raw)
  To: linux-arm-kernel

On 20120618-11:09, Stefan Roese wrote:
> On Wednesday 06 June 2012 08:46:07 Stefan Roese wrote:
> > On Wednesday 16 May 2012 07:56:49 viresh kumar wrote:
> > > > > Acked-by: Viresh Kumar <viresh.kumar@st.com>
> > > > 
> > > > Do you want me to take this?  Spear didn't originally go through me
> > > > but I can take it if that is the intent.
> > > 
> > > Sure. Go ahead.
> > 
> > Ping.
> 
> Ping again (this is a real show-stopper for SPEAr600 in v3.5!).
> 

Hi Stefan,

I've taken this into my clk-next branch already.  Sorry if I did not
communicate that well enough.  I will request for clk-next to be
included into linux-next later this week.  Hopefully this patch will
start showing up in linux-next in a matter of days.

Let me know if there is anything else I can do.

Thanks,
Mike

> Thanks,
> Stefan

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

* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
  2012-06-18 17:20           ` Mike Turquette
@ 2012-06-19  5:19             ` Stefan Roese
  2012-06-19 11:18             ` Arnd Bergmann
  1 sibling, 0 replies; 11+ messages in thread
From: Stefan Roese @ 2012-06-19  5:19 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Mike,

On Monday 18 June 2012 19:20:42 Mike Turquette wrote:
> On 20120618-11:09, Stefan Roese wrote:
> > On Wednesday 06 June 2012 08:46:07 Stefan Roese wrote:
> > > On Wednesday 16 May 2012 07:56:49 viresh kumar wrote:
> > > > > > Acked-by: Viresh Kumar <viresh.kumar@st.com>
> > > > > 
> > > > > Do you want me to take this?  Spear didn't originally go through me
> > > > > but I can take it if that is the intent.
> > > > 
> > > > Sure. Go ahead.
> > > 
> > > Ping.
> > 
> > Ping again (this is a real show-stopper for SPEAr600 in v3.5!).
> 
> Hi Stefan,
> 
> I've taken this into my clk-next branch already.  Sorry if I did not
> communicate that well enough.  I will request for clk-next to be
> included into linux-next later this week.  Hopefully this patch will
> start showing up in linux-next in a matter of days.

Great. Thanks,
Stefan

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

* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
  2012-06-18 17:20           ` Mike Turquette
  2012-06-19  5:19             ` Stefan Roese
@ 2012-06-19 11:18             ` Arnd Bergmann
  2012-06-19 11:34               ` Stefan Roese
  1 sibling, 1 reply; 11+ messages in thread
From: Arnd Bergmann @ 2012-06-19 11:18 UTC (permalink / raw)
  To: linux-arm-kernel

On Monday 18 June 2012, Mike Turquette wrote:
> > Ping again (this is a real show-stopper for SPEAr600 in v3.5!).
> > 
> I've taken this into my clk-next branch already.  Sorry if I did not
> communicate that well enough.  I will request for clk-next to be
> included into linux-next later this week.  Hopefully this patch will
> start showing up in linux-next in a matter of days.
> 
> Let me know if there is anything else I can do.

It sounds to me that Stefan needs this in 3.5, while the clk-next
patches are destined for 3.6. Is that correct? If so, do you also
have a clk-fixes branch that is targetted at 3.5 regressions?

	Arnd

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

* [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing
  2012-06-19 11:18             ` Arnd Bergmann
@ 2012-06-19 11:34               ` Stefan Roese
  0 siblings, 0 replies; 11+ messages in thread
From: Stefan Roese @ 2012-06-19 11:34 UTC (permalink / raw)
  To: linux-arm-kernel

On Tuesday 19 June 2012 13:18:42 Arnd Bergmann wrote:
> On Monday 18 June 2012, Mike Turquette wrote:
> > > Ping again (this is a real show-stopper for SPEAr600 in v3.5!).
> > 
> > I've taken this into my clk-next branch already.  Sorry if I did not
> > communicate that well enough.  I will request for clk-next to be
> > included into linux-next later this week.  Hopefully this patch will
> > start showing up in linux-next in a matter of days.
> > 
> > Let me know if there is anything else I can do.
> 
> It sounds to me that Stefan needs this in 3.5,

Yes. Its definitely a fix for 3.5.

> while the clk-next
> patches are destined for 3.6. Is that correct? If so, do you also
> have a clk-fixes branch that is targetted at 3.5 regressions?

Thanks,
Stefan

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

end of thread, other threads:[~2012-06-19 11:34 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-11  8:41 [PATCH] clk: SPEAr600: Fix ethernet clock name for DT based probing Stefan Roese
2012-05-14  3:34 ` Viresh Kumar
2012-05-16  4:58   ` Turquette, Mike
2012-05-16  5:56     ` viresh kumar
2012-05-16  6:07       ` Turquette, Mike
2012-06-06  6:46       ` Stefan Roese
2012-06-18  9:09         ` Stefan Roese
2012-06-18 17:20           ` Mike Turquette
2012-06-19  5:19             ` Stefan Roese
2012-06-19 11:18             ` Arnd Bergmann
2012-06-19 11:34               ` Stefan Roese

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.