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/ddb5xxx/ddb5074 | |
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/ddb5xxx/ddb5074')
-rw-r--r-- | arch/mips/ddb5xxx/ddb5074/nile4_pic.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/arch/mips/ddb5xxx/ddb5074/nile4_pic.c b/arch/mips/ddb5xxx/ddb5074/nile4_pic.c index 68c127cd70c9..8743ffce8653 100644 --- a/arch/mips/ddb5xxx/ddb5074/nile4_pic.c +++ b/arch/mips/ddb5xxx/ddb5074/nile4_pic.c | |||
@@ -209,14 +209,13 @@ static void nile4_irq_end(unsigned int irq) { | |||
209 | #define nile4_irq_shutdown nile4_disable_irq | 209 | #define nile4_irq_shutdown nile4_disable_irq |
210 | 210 | ||
211 | static hw_irq_controller nile4_irq_controller = { | 211 | static hw_irq_controller nile4_irq_controller = { |
212 | "nile4", | 212 | .typename = "nile4", |
213 | nile4_irq_startup, | 213 | .startup = nile4_irq_startup, |
214 | nile4_irq_shutdown, | 214 | .shutdown = nile4_irq_shutdown, |
215 | nile4_enable_irq, | 215 | .enable = nile4_enable_irq, |
216 | nile4_disable_irq, | 216 | .disable = nile4_disable_irq, |
217 | nile4_ack_irq, | 217 | .ack = nile4_ack_irq, |
218 | nile4_irq_end, | 218 | .end = nile4_irq_end, |
219 | NULL | ||
220 | }; | 219 | }; |
221 | 220 | ||
222 | void nile4_irq_setup(u32 base) { | 221 | void nile4_irq_setup(u32 base) { |