diff options
-rw-r--r-- | arch/x86/kernel/i8259_64.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/x86/kernel/i8259_64.c b/arch/x86/kernel/i8259_64.c index eb72976cc13c..3f27ea0b9816 100644 --- a/arch/x86/kernel/i8259_64.c +++ b/arch/x86/kernel/i8259_64.c | |||
@@ -395,7 +395,11 @@ device_initcall(i8259A_init_sysfs); | |||
395 | * IRQ2 is cascade interrupt to second interrupt controller | 395 | * IRQ2 is cascade interrupt to second interrupt controller |
396 | */ | 396 | */ |
397 | 397 | ||
398 | static struct irqaction irq2 = { no_action, 0, CPU_MASK_NONE, "cascade", NULL, NULL}; | 398 | static struct irqaction irq2 = { |
399 | .handler = no_action, | ||
400 | .mask = CPU_MASK_NONE, | ||
401 | .name = "cascade", | ||
402 | }; | ||
399 | DEFINE_PER_CPU(vector_irq_t, vector_irq) = { | 403 | DEFINE_PER_CPU(vector_irq_t, vector_irq) = { |
400 | [0 ... IRQ0_VECTOR - 1] = -1, | 404 | [0 ... IRQ0_VECTOR - 1] = -1, |
401 | [IRQ0_VECTOR] = 0, | 405 | [IRQ0_VECTOR] = 0, |