diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-07-22 05:17:11 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-07-22 05:18:22 -0400 |
commit | ded7c1ee9799fe0ca725b459f151402e3ca4d12b (patch) | |
tree | 3b080317ea973bb1f26aab67dcd0bcf3f38d5379 /arch/mips | |
parent | 01898e3e29ea8242d81923da11ce88ba71290a48 (diff) |
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: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/i8253.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/i8253.c b/arch/mips/kernel/i8253.c index 8d95fe4f4871..be4ee7d63e04 100644 --- a/arch/mips/kernel/i8253.c +++ b/arch/mips/kernel/i8253.c | |||
@@ -12,7 +12,7 @@ | |||
12 | 12 | ||
13 | static irqreturn_t timer_interrupt(int irq, void *dev_id) | 13 | static irqreturn_t timer_interrupt(int irq, void *dev_id) |
14 | { | 14 | { |
15 | i8253_clockevent.event_handler(&pit_clockevent); | 15 | i8253_clockevent.event_handler(&i8253_clockevent); |
16 | 16 | ||
17 | return IRQ_HANDLED; | 17 | return IRQ_HANDLED; |
18 | } | 18 | } |