diff options
Diffstat (limited to 'arch/cris/arch-v32/kernel/time.c')
-rw-r--r-- | arch/cris/arch-v32/kernel/time.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/cris/arch-v32/kernel/time.c b/arch/cris/arch-v32/kernel/time.c index 8c4b45efd7b6..ee66866538f8 100644 --- a/arch/cris/arch-v32/kernel/time.c +++ b/arch/cris/arch-v32/kernel/time.c | |||
@@ -216,12 +216,10 @@ static inline irqreturn_t timer_interrupt(int irq, void *dev_id) | |||
216 | return IRQ_HANDLED; | 216 | return IRQ_HANDLED; |
217 | } | 217 | } |
218 | 218 | ||
219 | /* Timer is IRQF_SHARED so drivers can add stuff to the timer irq chain. | 219 | /* Timer is IRQF_SHARED so drivers can add stuff to the timer irq chain. */ |
220 | * It needs to be IRQF_DISABLED to make the jiffies update work properly. | ||
221 | */ | ||
222 | static struct irqaction irq_timer = { | 220 | static struct irqaction irq_timer = { |
223 | .handler = timer_interrupt, | 221 | .handler = timer_interrupt, |
224 | .flags = IRQF_SHARED | IRQF_DISABLED, | 222 | .flags = IRQF_SHARED, |
225 | .name = "timer" | 223 | .name = "timer" |
226 | }; | 224 | }; |
227 | 225 | ||