summaryrefslogtreecommitdiff
path: root/firmware/target/arm/tcc780x/kernel-tcc780x.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/tcc780x/kernel-tcc780x.c')
-rw-r--r--firmware/target/arm/tcc780x/kernel-tcc780x.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/tcc780x/kernel-tcc780x.c b/firmware/target/arm/tcc780x/kernel-tcc780x.c
index e0d9c3342e..333823eef9 100644
--- a/firmware/target/arm/tcc780x/kernel-tcc780x.c
+++ b/firmware/target/arm/tcc780x/kernel-tcc780x.c
@@ -36,8 +36,8 @@ void tick_start(unsigned int interval_in_ms)
36 TCFG0 = (1<<8) | (0<<4) | (1<<3) | 1; 36 TCFG0 = (1<<8) | (0<<4) | (1<<3) | 1;
37 37
38 /* Unmask timer IRQ */ 38 /* Unmask timer IRQ */
39 MIRQ &= ~TIMER_IRQ_MASK; 39 IEN |= TIMER0_IRQ_MASK;
40} 40}
41 41
42/* NB: Since the 7801 has a single timer IRQ, the tick tasks are dispatched 42/* NB: Since we are using a single timer IRQ, tick tasks are dispatched as
43 as part of the central timer IRQ processing in timer-tcc780x.c */ 43 part of the central timer IRQ processing in timer-tcc780x.c */