summaryrefslogtreecommitdiff
path: root/firmware/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/timer.c')
-rw-r--r--firmware/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/timer.c b/firmware/timer.c
index 0746b05e46..a11cd10b7e 100644
--- a/firmware/timer.c
+++ b/firmware/timer.c
@@ -357,7 +357,7 @@ void timer_unregister(void)
357 irq_disable_int(IRQ_TIMER1); 357 irq_disable_int(IRQ_TIMER1);
358#elif CONFIG_CPU == AS3525 358#elif CONFIG_CPU == AS3525
359 TIMER1_CONTROL &= 0x10; /* disable timer 1 (don't modify bit 4) */ 359 TIMER1_CONTROL &= 0x10; /* disable timer 1 (don't modify bit 4) */
360 VIC_INT_EN_CLEAR |= INTERRUPT_TIMER1; /* disable interrupt */ 360 VIC_INT_EN_CLEAR = INTERRUPT_TIMER1; /* disable interrupt */
361 CGU_PERI &= ~CGU_TIMER1_CLOCK_ENABLE; /* disable peripheral */ 361 CGU_PERI &= ~CGU_TIMER1_CLOCK_ENABLE; /* disable peripheral */
362#elif CONFIG_CPU == S3C2440 || CONFIG_CPU == DM320 362#elif CONFIG_CPU == S3C2440 || CONFIG_CPU == DM320
363 __TIMER_UNREGISTER(); 363 __TIMER_UNREGISTER();