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/ddb5477 | |
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/ddb5477')
-rw-r--r-- | arch/mips/ddb5xxx/ddb5477/irq_5477.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/arch/mips/ddb5xxx/ddb5477/irq_5477.c b/arch/mips/ddb5xxx/ddb5477/irq_5477.c index 0d5e706207ec..5fcd5f070cdc 100644 --- a/arch/mips/ddb5xxx/ddb5477/irq_5477.c +++ b/arch/mips/ddb5xxx/ddb5477/irq_5477.c | |||
@@ -90,14 +90,13 @@ vrc5477_irq_end(unsigned int irq) | |||
90 | } | 90 | } |
91 | 91 | ||
92 | hw_irq_controller vrc5477_irq_controller = { | 92 | hw_irq_controller vrc5477_irq_controller = { |
93 | "vrc5477_irq", | 93 | .typename = "vrc5477_irq", |
94 | vrc5477_irq_startup, | 94 | .startup = vrc5477_irq_startup, |
95 | vrc5477_irq_shutdown, | 95 | .shutdown = vrc5477_irq_shutdown, |
96 | vrc5477_irq_enable, | 96 | .enable = vrc5477_irq_enable, |
97 | vrc5477_irq_disable, | 97 | .disable = vrc5477_irq_disable, |
98 | vrc5477_irq_ack, | 98 | .ack = vrc5477_irq_ack, |
99 | vrc5477_irq_end, | 99 | .end = vrc5477_irq_end |
100 | NULL /* no affinity stuff for UP */ | ||
101 | }; | 100 | }; |
102 | 101 | ||
103 | void __init vrc5477_irq_init(u32 irq_base) | 102 | void __init vrc5477_irq_init(u32 irq_base) |