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/lasat/interrupt.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/lasat/interrupt.c')
-rw-r--r-- | arch/mips/lasat/interrupt.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/arch/mips/lasat/interrupt.c b/arch/mips/lasat/interrupt.c index c90da1639440..852a41901a5e 100644 --- a/arch/mips/lasat/interrupt.c +++ b/arch/mips/lasat/interrupt.c | |||
@@ -71,14 +71,13 @@ static void end_lasat_irq(unsigned int irq) | |||
71 | } | 71 | } |
72 | 72 | ||
73 | static struct hw_interrupt_type lasat_irq_type = { | 73 | static struct hw_interrupt_type lasat_irq_type = { |
74 | "Lasat", | 74 | .typename = "Lasat", |
75 | startup_lasat_irq, | 75 | .startup = startup_lasat_irq, |
76 | shutdown_lasat_irq, | 76 | .shutdown = shutdown_lasat_irq, |
77 | enable_lasat_irq, | 77 | .enable = enable_lasat_irq, |
78 | disable_lasat_irq, | 78 | .disable = disable_lasat_irq, |
79 | mask_and_ack_lasat_irq, | 79 | .ack = mask_and_ack_lasat_irq, |
80 | end_lasat_irq, | 80 | .end = end_lasat_irq, |
81 | NULL | ||
82 | }; | 81 | }; |
83 | 82 | ||
84 | static inline int ls1bit32(unsigned int x) | 83 | static inline int ls1bit32(unsigned int x) |