diff options
author | Timo Teras <timo.teras@solidboot.com> | 2006-06-26 19:16:13 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2006-06-26 19:16:13 -0400 |
commit | e32f7ec2e8bf00756c74a5e6a80bc59e949dd81d (patch) | |
tree | 1b1e7d588c520ddad11c7ab036c4a50a5e92a49e /arch/arm/mach-omap2/timer-gp.c | |
parent | 77900a2fc3bfb1eb6eaa6d43eef4591e1f7c600d (diff) |
ARM: OMAP: Fix 32 kHz timer and modify GP timer to use GPT1
The dmtimer framework update broke 32 kHz timer as udelay() does not work
before system timer is started (and GPT1 should not be reset).
This also makes the GP timer use GPT1. This requires a fix in clock framework.
Signed-off-by: Timo Teras <timo.teras@solidboot.com>
Signed-off-by: Juha Yrjola <juha.yrjola@solidboot.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/timer-gp.c')
-rw-r--r-- | arch/arm/mach-omap2/timer-gp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/timer-gp.c b/arch/arm/mach-omap2/timer-gp.c index 3358c0d47b1a..cf78e6c5a277 100644 --- a/arch/arm/mach-omap2/timer-gp.c +++ b/arch/arm/mach-omap2/timer-gp.c | |||
@@ -61,7 +61,7 @@ static void __init omap2_gp_timer_init(void) | |||
61 | u32 tick_period; | 61 | u32 tick_period; |
62 | 62 | ||
63 | omap_dm_timer_init(); | 63 | omap_dm_timer_init(); |
64 | gptimer = omap_dm_timer_request_specific(2); | 64 | gptimer = omap_dm_timer_request_specific(1); |
65 | BUG_ON(gptimer == NULL); | 65 | BUG_ON(gptimer == NULL); |
66 | 66 | ||
67 | omap_dm_timer_set_source(gptimer, OMAP_TIMER_SRC_SYS_CLK); | 67 | omap_dm_timer_set_source(gptimer, OMAP_TIMER_SRC_SYS_CLK); |