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-ip27 | |
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-ip27')
-rw-r--r-- | arch/mips/sgi-ip27/ip27-irq.c | 2 | ||||
-rw-r--r-- | arch/mips/sgi-ip27/ip27-timer.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/sgi-ip27/ip27-irq.c b/arch/mips/sgi-ip27/ip27-irq.c index 52dad1be6265..24a85372284f 100644 --- a/arch/mips/sgi-ip27/ip27-irq.c +++ b/arch/mips/sgi-ip27/ip27-irq.c | |||
@@ -345,7 +345,7 @@ static void end_bridge_irq(unsigned int irq) | |||
345 | enable_bridge_irq(irq); | 345 | enable_bridge_irq(irq); |
346 | } | 346 | } |
347 | 347 | ||
348 | static struct hw_interrupt_type bridge_irq_type = { | 348 | static struct irq_chip bridge_irq_type = { |
349 | .typename = "bridge", | 349 | .typename = "bridge", |
350 | .startup = startup_bridge_irq, | 350 | .startup = startup_bridge_irq, |
351 | .shutdown = shutdown_bridge_irq, | 351 | .shutdown = shutdown_bridge_irq, |
diff --git a/arch/mips/sgi-ip27/ip27-timer.c b/arch/mips/sgi-ip27/ip27-timer.c index 3ca614a851e5..f3775aa9b9de 100644 --- a/arch/mips/sgi-ip27/ip27-timer.c +++ b/arch/mips/sgi-ip27/ip27-timer.c | |||
@@ -205,7 +205,7 @@ static void end_rt_irq(unsigned int irq) | |||
205 | { | 205 | { |
206 | } | 206 | } |
207 | 207 | ||
208 | static struct hw_interrupt_type rt_irq_type = { | 208 | static struct irq_chip rt_irq_type = { |
209 | .typename = "SN HUB RT timer", | 209 | .typename = "SN HUB RT timer", |
210 | .startup = startup_rt_irq, | 210 | .startup = startup_rt_irq, |
211 | .shutdown = shutdown_rt_irq, | 211 | .shutdown = shutdown_rt_irq, |