Skip to content

Commit

Permalink
MIPS: Convert obsolete irq_desc_t to struct irq_desc
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Thomas Gleixner authored and Ralf Baechle committed Mar 30, 2009
1 parent c87e090 commit ae03550
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/cavium-octeon/octeon-irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static void octeon_irq_core_ack(unsigned int irq)

static void octeon_irq_core_eoi(unsigned int irq)
{
irq_desc_t *desc = irq_desc + irq;
struct irq_desc *desc = irq_desc + irq;
unsigned int bit = irq - OCTEON_IRQ_SW0;
/*
* If an IRQ is being processed while we are disabling it the
Expand Down

0 comments on commit ae03550

Please sign in to comment.