Skip to content

Commit

Permalink
mips: vr41xx: Use irdq_irq_disabled()
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Thomas Gleixner committed Mar 29, 2011
1 parent e4ec798 commit 1d5f821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/vr41xx/common/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static void irq_dispatch(unsigned int irq)
atomic_inc(&irq_err_count);
else
irq_dispatch(irq);
if (!(desc->status & IRQ_DISABLED) && chip->irq_unmask)
if (!irqd_irq_disabled(idata) && chip->irq_unmask)
chip->irq_unmask(idata);
} else
do_IRQ(irq);
Expand Down

0 comments on commit 1d5f821

Please sign in to comment.