FYI, this seems to be currently broken as default_disable in kernel/irq/chip.c
is defined to be an EMPTY function. It will affect drivers using disable_irq
and following patch fixes it.
static void default_disable(unsigned int irq)
{
+ struct irq_desc *desc = irq_desc + irq;
+
+ desc->chip->mask(irq);
+ desc->status |= IRQ_MASKED;
+
}
Regards,
Pratheesh
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html