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/ddb5476 | |
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/ddb5476')
-rw-r--r-- | arch/mips/ddb5xxx/ddb5476/vrc5476_irq.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/arch/mips/ddb5xxx/ddb5476/vrc5476_irq.c b/arch/mips/ddb5xxx/ddb5476/vrc5476_irq.c index a77682be01ac..f66fe5b58636 100644 --- a/arch/mips/ddb5xxx/ddb5476/vrc5476_irq.c +++ b/arch/mips/ddb5xxx/ddb5476/vrc5476_irq.c | |||
@@ -53,14 +53,13 @@ static void vrc5476_irq_end(uint irq) | |||
53 | } | 53 | } |
54 | 54 | ||
55 | static hw_irq_controller vrc5476_irq_controller = { | 55 | static hw_irq_controller vrc5476_irq_controller = { |
56 | "vrc5476", | 56 | .typename = "vrc5476", |
57 | vrc5476_irq_startup, | 57 | .startup = vrc5476_irq_startup, |
58 | vrc5476_irq_shutdown, | 58 | .shutdown = vrc5476_irq_shutdown, |
59 | vrc5476_irq_enable, | 59 | .enable = vrc5476_irq_enable, |
60 | vrc5476_irq_disable, | 60 | .disable = vrc5476_irq_disable, |
61 | vrc5476_irq_ack, | 61 | .ack = vrc5476_irq_ack, |
62 | vrc5476_irq_end, | 62 | .end = vrc5476_irq_end |
63 | NULL /* no affinity stuff for UP */ | ||
64 | }; | 63 | }; |
65 | 64 | ||
66 | void __init | 65 | void __init |