Commit 461ebd10 authored by Glauber Costa's avatar Glauber Costa Committed by Ingo Molnar

x86: rename timer_event_interrupt to timer_interrupt

Signed-off-by: default avatarGlauber Costa <gcosta@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 780209af
...@@ -48,7 +48,7 @@ unsigned long profile_pc(struct pt_regs *regs) ...@@ -48,7 +48,7 @@ unsigned long profile_pc(struct pt_regs *regs)
} }
EXPORT_SYMBOL(profile_pc); EXPORT_SYMBOL(profile_pc);
static irqreturn_t timer_event_interrupt(int irq, void *dev_id) irqreturn_t timer_interrupt(int irq, void *dev_id)
{ {
add_pda(irq0_irqs, 1); add_pda(irq0_irqs, 1);
...@@ -104,7 +104,7 @@ unsigned long __init calibrate_cpu(void) ...@@ -104,7 +104,7 @@ unsigned long __init calibrate_cpu(void)
} }
static struct irqaction irq0 = { static struct irqaction irq0 = {
.handler = timer_event_interrupt, .handler = timer_interrupt,
.flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING, .flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING,
.mask = CPU_MASK_NONE, .mask = CPU_MASK_NONE,
.name = "timer" .name = "timer"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment