* [PATCH] ARM: OMAP2+: am33xx: Fix the timer fck clock naming convention
@ 2012-07-16 18:09 Vaibhav Hiremath
2012-07-16 23:54 ` Paul Walmsley
2012-08-27 17:15 ` Paul Walmsley
0 siblings, 2 replies; 5+ messages in thread
From: Vaibhav Hiremath @ 2012-07-16 18:09 UTC (permalink / raw)
To: linux-arm-kernel
With commit ae6df418a21f3a361c5f9b878e32a8aba4e17692
Sub: ARM: OMAP2+: dmtimer: cleanup fclk usage)
The Timer functional clock naming convention has changed from
gptX_fck => timerXfck, and so as the timer init function
in mach-omap2/timer.c.
OMAP4 clocktree also has changed accordingly.
AM33xx Clock Tree has been merged during rc3-4 timeframe,
before above commit got merged, so similar change is required
for AM33xx as well (Change the gptX_fck => timerX_fck).
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
---
arch/arm/mach-omap2/clock33xx_data.c | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/arch/arm/mach-omap2/clock33xx_data.c b/arch/arm/mach-omap2/clock33xx_data.c
index 25bbcc7..ae27de8 100644
--- a/arch/arm/mach-omap2/clock33xx_data.c
+++ b/arch/arm/mach-omap2/clock33xx_data.c
@@ -1036,13 +1036,13 @@ static struct omap_clk am33xx_clks[] = {
CLK(NULL, "mmu_fck", &mmu_fck, CK_AM33XX),
CLK(NULL, "smartreflex0_fck", &smartreflex0_fck, CK_AM33XX),
CLK(NULL, "smartreflex1_fck", &smartreflex1_fck, CK_AM33XX),
- CLK(NULL, "gpt1_fck", &timer1_fck, CK_AM33XX),
- CLK(NULL, "gpt2_fck", &timer2_fck, CK_AM33XX),
- CLK(NULL, "gpt3_fck", &timer3_fck, CK_AM33XX),
- CLK(NULL, "gpt4_fck", &timer4_fck, CK_AM33XX),
- CLK(NULL, "gpt5_fck", &timer5_fck, CK_AM33XX),
- CLK(NULL, "gpt6_fck", &timer6_fck, CK_AM33XX),
- CLK(NULL, "gpt7_fck", &timer7_fck, CK_AM33XX),
+ CLK(NULL, "timer1_fck", &timer1_fck, CK_AM33XX),
+ CLK(NULL, "timer2_fck", &timer2_fck, CK_AM33XX),
+ CLK(NULL, "timer3_fck", &timer3_fck, CK_AM33XX),
+ CLK(NULL, "timer4_fck", &timer4_fck, CK_AM33XX),
+ CLK(NULL, "timer5_fck", &timer5_fck, CK_AM33XX),
+ CLK(NULL, "timer6_fck", &timer6_fck, CK_AM33XX),
+ CLK(NULL, "timer7_fck", &timer7_fck, CK_AM33XX),
CLK(NULL, "usbotg_fck", &usbotg_fck, CK_AM33XX),
CLK(NULL, "ieee5000_fck", &ieee5000_fck, CK_AM33XX),
CLK(NULL, "wdt1_fck", &wdt1_fck, CK_AM33XX),
--
1.7.0.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH] ARM: OMAP2+: am33xx: Fix the timer fck clock naming convention
2012-07-16 18:09 [PATCH] ARM: OMAP2+: am33xx: Fix the timer fck clock naming convention Vaibhav Hiremath
@ 2012-07-16 23:54 ` Paul Walmsley
2012-07-17 4:44 ` Hiremath, Vaibhav
2012-08-27 17:15 ` Paul Walmsley
1 sibling, 1 reply; 5+ messages in thread
From: Paul Walmsley @ 2012-07-16 23:54 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, 16 Jul 2012, Vaibhav Hiremath wrote:
> With commit ae6df418a21f3a361c5f9b878e32a8aba4e17692
> Sub: ARM: OMAP2+: dmtimer: cleanup fclk usage)
> The Timer functional clock naming convention has changed from
> gptX_fck => timerXfck, and so as the timer init function
> in mach-omap2/timer.c.
> OMAP4 clocktree also has changed accordingly.
>
> AM33xx Clock Tree has been merged during rc3-4 timeframe,
> before above commit got merged, so similar change is required
> for AM33xx as well (Change the gptX_fck => timerX_fck).
>
> Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
Thanks, this looks like 3.6-rc material, right?
- Paul
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] ARM: OMAP2+: am33xx: Fix the timer fck clock naming convention
2012-07-16 23:54 ` Paul Walmsley
@ 2012-07-17 4:44 ` Hiremath, Vaibhav
2012-08-27 6:52 ` Vaibhav Hiremath
0 siblings, 1 reply; 5+ messages in thread
From: Hiremath, Vaibhav @ 2012-07-17 4:44 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Jul 17, 2012 at 05:24:39, Paul Walmsley wrote:
> On Mon, 16 Jul 2012, Vaibhav Hiremath wrote:
>
> > With commit ae6df418a21f3a361c5f9b878e32a8aba4e17692
> > Sub: ARM: OMAP2+: dmtimer: cleanup fclk usage)
> > The Timer functional clock naming convention has changed from
> > gptX_fck => timerXfck, and so as the timer init function
> > in mach-omap2/timer.c.
> > OMAP4 clocktree also has changed accordingly.
> >
> > AM33xx Clock Tree has been merged during rc3-4 timeframe,
> > before above commit got merged, so similar change is required
> > for AM33xx as well (Change the gptX_fck => timerX_fck).
> >
> > Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
>
> Thanks, this looks like 3.6-rc material, right?
>
>
Yes, that's correct.
Thanks,
Vaibhav
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] ARM: OMAP2+: am33xx: Fix the timer fck clock naming convention
2012-07-17 4:44 ` Hiremath, Vaibhav
@ 2012-08-27 6:52 ` Vaibhav Hiremath
0 siblings, 0 replies; 5+ messages in thread
From: Vaibhav Hiremath @ 2012-08-27 6:52 UTC (permalink / raw)
To: linux-arm-kernel
On 7/17/2012 10:14 AM, Hiremath, Vaibhav wrote:
> On Tue, Jul 17, 2012 at 05:24:39, Paul Walmsley wrote:
>> On Mon, 16 Jul 2012, Vaibhav Hiremath wrote:
>>
>>> With commit ae6df418a21f3a361c5f9b878e32a8aba4e17692
>>> Sub: ARM: OMAP2+: dmtimer: cleanup fclk usage)
>>> The Timer functional clock naming convention has changed from
>>> gptX_fck => timerXfck, and so as the timer init function
>>> in mach-omap2/timer.c.
>>> OMAP4 clocktree also has changed accordingly.
>>>
>>> AM33xx Clock Tree has been merged during rc3-4 timeframe,
>>> before above commit got merged, so similar change is required
>>> for AM33xx as well (Change the gptX_fck => timerX_fck).
>>>
>>> Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
>>
>> Thanks, this looks like 3.6-rc material, right?
>>
>>
>
> Yes, that's correct.
>
Tony/Paul,
Ping !!!
Thanks,
Vaibhav
> Thanks,
> Vaibhav
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] ARM: OMAP2+: am33xx: Fix the timer fck clock naming convention
2012-07-16 18:09 [PATCH] ARM: OMAP2+: am33xx: Fix the timer fck clock naming convention Vaibhav Hiremath
2012-07-16 23:54 ` Paul Walmsley
@ 2012-08-27 17:15 ` Paul Walmsley
1 sibling, 0 replies; 5+ messages in thread
From: Paul Walmsley @ 2012-08-27 17:15 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, 16 Jul 2012, Vaibhav Hiremath wrote:
> With commit ae6df418a21f3a361c5f9b878e32a8aba4e17692
> Sub: ARM: OMAP2+: dmtimer: cleanup fclk usage)
> The Timer functional clock naming convention has changed from
> gptX_fck => timerXfck, and so as the timer init function
> in mach-omap2/timer.c.
> OMAP4 clocktree also has changed accordingly.
>
> AM33xx Clock Tree has been merged during rc3-4 timeframe,
> before above commit got merged, so similar change is required
> for AM33xx as well (Change the gptX_fck => timerX_fck).
>
> Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
Thanks, queued for v3.6-rc.
- Paul
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-08-27 17:15 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-16 18:09 [PATCH] ARM: OMAP2+: am33xx: Fix the timer fck clock naming convention Vaibhav Hiremath
2012-07-16 23:54 ` Paul Walmsley
2012-07-17 4:44 ` Hiremath, Vaibhav
2012-08-27 6:52 ` Vaibhav Hiremath
2012-08-27 17:15 ` Paul Walmsley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).