diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-17 18:04:36 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@inhelltoy.tec.linutronix.de> | 2007-10-17 20:16:07 +0200 |
commit | df5ddf620e101f6c7f968c71b327ded16a90ca03 (patch) | |
tree | b6e3dd37845e9ae612cdc82f6b52843e4a607cc0 /arch | |
parent | 6a61f6a55708f5e50c4d78934199e7e9257e6aa2 (diff) | |
download | op-kernel-dev-df5ddf620e101f6c7f968c71b327ded16a90ca03.zip op-kernel-dev-df5ddf620e101f6c7f968c71b327ded16a90ca03.tar.gz |
x86: more struct irqaction initializer cleanups
more struct irqaction initializer cleanups.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-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 eb72976..3f27ea0 100644 --- a/arch/x86/kernel/i8259_64.c +++ b/arch/x86/kernel/i8259_64.c @@ -395,7 +395,11 @@ device_initcall(i8259A_init_sysfs); * IRQ2 is cascade interrupt to second interrupt controller */ -static struct irqaction irq2 = { no_action, 0, CPU_MASK_NONE, "cascade", NULL, NULL}; +static struct irqaction irq2 = { + .handler = no_action, + .mask = CPU_MASK_NONE, + .name = "cascade", +}; DEFINE_PER_CPU(vector_irq_t, vector_irq) = { [0 ... IRQ0_VECTOR - 1] = -1, [IRQ0_VECTOR] = 0, |