From: Thomas Gleixner Date: Fri, 22 Jul 2011 09:17:11 +0000 (+0200) Subject: mips: Fix i8253 clockevent fallout X-Git-Tag: v3.1-rc1~297^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ded7c1ee9799fe0ca725b459f151402e3ca4d12b;p=platform%2Fkernel%2Flinux-stable.git mips: Fix i8253 clockevent fallout pit_clockevent wants to replaced in the argument of the callback function as well. Reported-by; Ingo Molnar Signed-off-by: Thomas Gleixner --- diff --git a/arch/mips/kernel/i8253.c b/arch/mips/kernel/i8253.c index 8d95fe4f..be4ee7d 100644 --- a/arch/mips/kernel/i8253.c +++ b/arch/mips/kernel/i8253.c @@ -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; }