diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-03-10 20:45:51 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-03-30 08:49:44 -0400 |
commit | ae03550500654e95c47229775bfec33ed0effe40 (patch) | |
tree | 77566b323cdb916ad42efe41b36305916d970b6e /arch/mips | |
parent | c87e09096dcd1ea3da8dfe434ee694fac51031c8 (diff) |
MIPS: Convert obsolete irq_desc_t to struct irq_desc
Impact: cleanup
Convert the last remaining users to struct irq_desc.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/cavium-octeon/octeon-irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/cavium-octeon/octeon-irq.c b/arch/mips/cavium-octeon/octeon-irq.c index fc72984a5dae..1c19af8daa62 100644 --- a/arch/mips/cavium-octeon/octeon-irq.c +++ b/arch/mips/cavium-octeon/octeon-irq.c | |||
@@ -31,7 +31,7 @@ static void octeon_irq_core_ack(unsigned int irq) | |||
31 | 31 | ||
32 | static void octeon_irq_core_eoi(unsigned int irq) | 32 | static void octeon_irq_core_eoi(unsigned int irq) |
33 | { | 33 | { |
34 | irq_desc_t *desc = irq_desc + irq; | 34 | struct irq_desc *desc = irq_desc + irq; |
35 | unsigned int bit = irq - OCTEON_IRQ_SW0; | 35 | unsigned int bit = irq - OCTEON_IRQ_SW0; |
36 | /* | 36 | /* |
37 | * If an IRQ is being processed while we are disabling it the | 37 | * If an IRQ is being processed while we are disabling it the |