Commit 2d1f3be6 authored by Subramaniam C.A's avatar Subramaniam C.A Committed by Hari Kanigeri

OMAP4 Mailbox Patch to change the IRQ flag from IRQF_DISABLED to IRQF_SHARED

This is a temporary patch and needs to be reviewed.
Currently, this facilitates both the tesla and ducati
sides to request for the same irq through a
omap_mbox_get() call.
Signed-off-by: default avatarC A Subramaniam <subramaniam.ca@ti.com>
parent 4ad6e535
......@@ -273,7 +273,7 @@ static int omap_mbox_startup(struct omap_mbox *mbox)
return ret;
}
ret = request_irq(mbox->irq, mbox_interrupt, IRQF_DISABLED,
ret = request_irq(mbox->irq, mbox_interrupt, IRQF_SHARED,
mbox->name, mbox);
if (unlikely(ret)) {
printk(KERN_ERR
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment