diff options
-rw-r--r-- | arch/x86/kernel/time_64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/time_64.c b/arch/x86/kernel/time_64.c index 841938297c2a..2be67c24909e 100644 --- a/arch/x86/kernel/time_64.c +++ b/arch/x86/kernel/time_64.c | |||
@@ -48,7 +48,7 @@ unsigned long profile_pc(struct pt_regs *regs) | |||
48 | } | 48 | } |
49 | EXPORT_SYMBOL(profile_pc); | 49 | EXPORT_SYMBOL(profile_pc); |
50 | 50 | ||
51 | static irqreturn_t timer_event_interrupt(int irq, void *dev_id) | 51 | irqreturn_t timer_interrupt(int irq, void *dev_id) |
52 | { | 52 | { |
53 | add_pda(irq0_irqs, 1); | 53 | add_pda(irq0_irqs, 1); |
54 | 54 | ||
@@ -104,7 +104,7 @@ unsigned long __init calibrate_cpu(void) | |||
104 | } | 104 | } |
105 | 105 | ||
106 | static struct irqaction irq0 = { | 106 | static struct irqaction irq0 = { |
107 | .handler = timer_event_interrupt, | 107 | .handler = timer_interrupt, |
108 | .flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING, | 108 | .flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING, |
109 | .mask = CPU_MASK_NONE, | 109 | .mask = CPU_MASK_NONE, |
110 | .name = "timer" | 110 | .name = "timer" |