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/jmr3927 | |
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/jmr3927')
-rw-r--r-- | arch/mips/jmr3927/rbhma3100/irq.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/mips/jmr3927/rbhma3100/irq.c b/arch/mips/jmr3927/rbhma3100/irq.c index b9799b86fc79..7cbe14483f13 100644 --- a/arch/mips/jmr3927/rbhma3100/irq.c +++ b/arch/mips/jmr3927/rbhma3100/irq.c | |||
@@ -412,13 +412,13 @@ void __init arch_init_irq(void) | |||
412 | } | 412 | } |
413 | 413 | ||
414 | static hw_irq_controller jmr3927_irq_controller = { | 414 | static hw_irq_controller jmr3927_irq_controller = { |
415 | "jmr3927_irq", | 415 | .typename = "jmr3927_irq", |
416 | jmr3927_irq_startup, | 416 | .startup = jmr3927_irq_startup, |
417 | jmr3927_irq_shutdown, | 417 | .shutdown = jmr3927_irq_shutdown, |
418 | jmr3927_irq_enable, | 418 | .enable = jmr3927_irq_enable, |
419 | jmr3927_irq_disable, | 419 | .disable = jmr3927_irq_disable, |
420 | jmr3927_irq_ack, | 420 | .ack = jmr3927_irq_ack, |
421 | jmr3927_irq_end, | 421 | .end = jmr3927_irq_end, |
422 | }; | 422 | }; |
423 | 423 | ||
424 | void jmr3927_irq_init(u32 irq_base) | 424 | void jmr3927_irq_init(u32 irq_base) |