diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-03 02:04:08 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-10-03 02:04:08 -0400 |
commit | e1fb4552ac938f2f70e9df2169b681594752bd85 (patch) | |
tree | 5a2829639e8a27a8a664299bf0c5d66bce4327f3 /arch/sh/boards/se | |
parent | 008d50fc16e8ea5005d324a25d62d29e417151fe (diff) |
sh: cleanup struct irqaction initializers.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/se')
-rw-r--r-- | arch/sh/boards/se/7343/irq.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/sh/boards/se/7343/irq.c b/arch/sh/boards/se/7343/irq.c index 360153ecc55b..763f6deba814 100644 --- a/arch/sh/boards/se/7343/irq.c +++ b/arch/sh/boards/se/7343/irq.c | |||
@@ -99,8 +99,11 @@ shmse_irq_demux(int irq) | |||
99 | * | 99 | * |
100 | * We configure IRQ5 as a cascade IRQ. | 100 | * We configure IRQ5 as a cascade IRQ. |
101 | */ | 101 | */ |
102 | static struct irqaction irq5 = { no_action, 0, CPU_MASK_NONE, "IRQ5-cascade", | 102 | static struct irqaction irq5 = { |
103 | NULL, NULL}; | 103 | .handler = no_action, |
104 | .mask = CPU_MASK_NONE, | ||
105 | .name = "IRQ5-cascade", | ||
106 | }; | ||
104 | 107 | ||
105 | static struct ipr_data se7343_irq5_ipr_map[] = { | 108 | static struct ipr_data se7343_irq5_ipr_map[] = { |
106 | { IRQ5_IRQ, IRQ5_IPR_ADDR+2, IRQ5_IPR_POS, IRQ5_PRIORITY }, | 109 | { IRQ5_IRQ, IRQ5_IPR_ADDR+2, IRQ5_IPR_POS, IRQ5_PRIORITY }, |