projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01898e3
)
mips: Fix i8253 clockevent fallout
author
Thomas Gleixner
<tglx@linutronix.de>
Fri, 22 Jul 2011 09:17:11 +0000
(11:17 +0200)
committer
Thomas Gleixner
<tglx@linutronix.de>
Fri, 22 Jul 2011 09:18:22 +0000
(11:18 +0200)
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>
arch/mips/kernel/i8253.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/mips/kernel/i8253.c
b/arch/mips/kernel/i8253.c
index 8d95fe4f48713296930c2af8a937ead1472012ed..be4ee7d63e04cadc441a5684b48924dda36a9496 100644
(file)
--- 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;
}