alpha: irq clean up
Stop touching irq_desc[irq] directly, instead use accessor functions provided. Use irq_has_action instead of directly testing the irq_desc. Tested-by: Michael Cree <mcree@orcon.net.nz> Signed-off-by: Kyle McMartin <kyle@redhat.com> Signed-off-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:

committed by
Matt Turner

parent
d5ccde0a64
commit
a891b393dd
@@ -79,7 +79,8 @@ i8259a_startup_irq(unsigned int irq)
|
||||
void
|
||||
i8259a_end_irq(unsigned int irq)
|
||||
{
|
||||
if (!(irq_desc[irq].status & (IRQ_DISABLED|IRQ_INPROGRESS)))
|
||||
struct irq_desc *desc = irq_to_desc(irq);
|
||||
if (desc || !(desc->status & (IRQ_DISABLED|IRQ_INPROGRESS)))
|
||||
i8259a_enable_irq(irq);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user