aboutsummaryrefslogtreecommitdiffstats
path: root/arch/cris/arch-v10/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'arch/cris/arch-v10/kernel')
-rw-r--r--arch/cris/arch-v10/kernel/time.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/cris/arch-v10/kernel/time.c b/arch/cris/arch-v10/kernel/time.c
index fce7c541d70d..e6a722715a8d 100644
--- a/arch/cris/arch-v10/kernel/time.c
+++ b/arch/cris/arch-v10/kernel/time.c
@@ -178,13 +178,11 @@ timer_interrupt(int irq, void *dev_id)
178 return IRQ_HANDLED; 178 return IRQ_HANDLED;
179} 179}
180 180
181/* timer is IRQF_SHARED so drivers can add stuff to the timer irq chain 181/* timer is IRQF_SHARED so drivers can add stuff to the timer irq chain */
182 * it needs to be IRQF_DISABLED to make the jiffies update work properly
183 */
184 182
185static struct irqaction irq2 = { 183static struct irqaction irq2 = {
186 .handler = timer_interrupt, 184 .handler = timer_interrupt,
187 .flags = IRQF_SHARED | IRQF_DISABLED, 185 .flags = IRQF_SHARED,
188 .name = "timer", 186 .name = "timer",
189}; 187};
190 188