Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ded7c1ee authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

mips: Fix i8253 clockevent fallout



pit_clockevent wants to replaced in the argument of the callback
function as well.

Reported-by; Ingo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 01898e3e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}