Skip to content

Commit

Permalink
mips: Fix i8253 clockevent fallout
Browse files Browse the repository at this point in the history
pit_clockevent wants to replaced in the argument of the callback
function as well.

Reported-by; Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Thomas Gleixner committed Jul 22, 2011
1 parent 01898e3 commit ded7c1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/kernel/i8253.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

static irqreturn_t timer_interrupt(int irq, void *dev_id)
{
i8253_clockevent.event_handler(&pit_clockevent);
i8253_clockevent.event_handler(&i8253_clockevent);

return IRQ_HANDLED;
}
Expand Down

0 comments on commit ded7c1e

Please sign in to comment.