diff options
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/kernel/time.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86_64/kernel/time.c b/arch/x86_64/kernel/time.c index 0652e173813b..4a0895bacf51 100644 --- a/arch/x86_64/kernel/time.c +++ b/arch/x86_64/kernel/time.c | |||
@@ -363,7 +363,10 @@ void stop_timer_interrupt(void) | |||
363 | } | 363 | } |
364 | 364 | ||
365 | static struct irqaction irq0 = { | 365 | static struct irqaction irq0 = { |
366 | timer_interrupt, IRQF_DISABLED, CPU_MASK_NONE, "timer", NULL, NULL | 366 | .handler = timer_interrupt, |
367 | .flags = IRQF_DISABLED | IRQF_IRQPOLL, | ||
368 | .mask = CPU_MASK_NONE, | ||
369 | .name = "timer" | ||
367 | }; | 370 | }; |
368 | 371 | ||
369 | void __init time_init(void) | 372 | void __init time_init(void) |