diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-07-02 09:41:42 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-07-13 16:25:58 -0400 |
commit | 94dee171df34b7955cd647da4c40ba67d55a7671 (patch) | |
tree | 4f4cb8c8d5e37a7bc33457ffff5caff85376037f /arch/mips/sgi-ip22/ip22-eisa.c | |
parent | e1e80b4d24eddd1a76cd386e25164cf159661bd6 (diff) |
[MIPS] Eleminate interrupt migration helper use.
> #define hw_interrupt_type irq_chip
> typedef struct irq_chip hw_irq_controller;
> #define no_irq_type no_irq_chip
> typedef struct irq_desc irq_desc_t;
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip22/ip22-eisa.c')
-rw-r--r-- | arch/mips/sgi-ip22/ip22-eisa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/sgi-ip22/ip22-eisa.c b/arch/mips/sgi-ip22/ip22-eisa.c index ce8e4a7869b0..ee0514a29922 100644 --- a/arch/mips/sgi-ip22/ip22-eisa.c +++ b/arch/mips/sgi-ip22/ip22-eisa.c | |||
@@ -144,7 +144,7 @@ static void end_eisa1_irq(unsigned int irq) | |||
144 | enable_eisa1_irq(irq); | 144 | enable_eisa1_irq(irq); |
145 | } | 145 | } |
146 | 146 | ||
147 | static struct hw_interrupt_type ip22_eisa1_irq_type = { | 147 | static struct irq_chip ip22_eisa1_irq_type = { |
148 | .typename = "IP22 EISA", | 148 | .typename = "IP22 EISA", |
149 | .startup = startup_eisa1_irq, | 149 | .startup = startup_eisa1_irq, |
150 | .shutdown = shutdown_eisa1_irq, | 150 | .shutdown = shutdown_eisa1_irq, |
@@ -206,7 +206,7 @@ static void end_eisa2_irq(unsigned int irq) | |||
206 | enable_eisa2_irq(irq); | 206 | enable_eisa2_irq(irq); |
207 | } | 207 | } |
208 | 208 | ||
209 | static struct hw_interrupt_type ip22_eisa2_irq_type = { | 209 | static struct irq_chip ip22_eisa2_irq_type = { |
210 | .typename = "IP22 EISA", | 210 | .typename = "IP22 EISA", |
211 | .startup = startup_eisa2_irq, | 211 | .startup = startup_eisa2_irq, |
212 | .shutdown = shutdown_eisa2_irq, | 212 | .shutdown = shutdown_eisa2_irq, |