diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-02-28 08:39:57 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:30:46 -0400 |
commit | 8ab00b9a02c55fd6263c5f7c0dc88389d94de327 (patch) | |
tree | 0893140cd9b2c80198950f3cd1b8053f951ca729 /arch/mips/jazz/irq.c | |
parent | d437441ef5336874e934bd53a03159a584efe95a (diff) |
Convert struct hw_interrupt_type initializations to ISO C99 named
initializers.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/jazz/irq.c')
-rw-r--r-- | arch/mips/jazz/irq.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/arch/mips/jazz/irq.c b/arch/mips/jazz/irq.c index 0b608fa98d5a..b309b1bcf2e8 100644 --- a/arch/mips/jazz/irq.c +++ b/arch/mips/jazz/irq.c | |||
@@ -58,14 +58,13 @@ static void end_r4030_irq(unsigned int irq) | |||
58 | } | 58 | } |
59 | 59 | ||
60 | static struct hw_interrupt_type r4030_irq_type = { | 60 | static struct hw_interrupt_type r4030_irq_type = { |
61 | "R4030", | 61 | .typename = "R4030", |
62 | startup_r4030_irq, | 62 | .startup = startup_r4030_irq, |
63 | shutdown_r4030_irq, | 63 | .shutdown = shutdown_r4030_irq, |
64 | enable_r4030_irq, | 64 | .enable = enable_r4030_irq, |
65 | disable_r4030_irq, | 65 | .disable = disable_r4030_irq, |
66 | mask_and_ack_r4030_irq, | 66 | .ack = mask_and_ack_r4030_irq, |
67 | end_r4030_irq, | 67 | .end = end_r4030_irq, |
68 | NULL | ||
69 | }; | 68 | }; |
70 | 69 | ||
71 | void __init init_r4030_ints(void) | 70 | void __init init_r4030_ints(void) |