Commit 13a9f510 authored by Tony Lindgren's avatar Tony Lindgren

ARM: OMAP: Synced irq.c with mainline

Removed duplicate dyn-tick call.
parent 05715197
...@@ -346,12 +346,6 @@ __do_irq(unsigned int irq, struct irqaction *action, struct pt_regs *regs) ...@@ -346,12 +346,6 @@ __do_irq(unsigned int irq, struct irqaction *action, struct pt_regs *regs)
if (!(action->flags & SA_INTERRUPT)) if (!(action->flags & SA_INTERRUPT))
local_irq_enable(); local_irq_enable();
#ifdef CONFIG_NO_IDLE_HZ
if ((!(action->flags & SA_TIMER)) && system_timer->dyn_tick->handler &&
(system_timer->dyn_tick->state & DYN_TICK_ENABLED))
system_timer->dyn_tick->handler(irq, 0, regs);
#endif
status = 0; status = 0;
do { do {
ret = action->handler(irq, action->dev_id, regs); ret = action->handler(irq, action->dev_id, regs);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment