diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-30 21:37:12 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-30 21:37:12 -0500 |
commit | 23fd07750a789a66fe88cf173d52a18f1a387da4 (patch) | |
tree | 06fdd6df35fdb835abdaa9b754d62f6b84b97250 /arch/mips/lasat/interrupt.c | |
parent | bd787d438a59266af3c9f6351644c85ef1dd21fe (diff) | |
parent | ed28f96ac1960f30f818374d65be71d2fdf811b0 (diff) |
Merge ../linux-2.6 by hand
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) |