>From 26e994864872ffc5fca3b059671b2edbdac69e6e Mon Sep 17 00:00:00 2001 From: C A Subramaniam <subramaniam.ca@xxxxxx> Date: Wed, 2 Sep 2009 20:34:16 +0530 Subject: [PATCH 9/10] omap mailbox: OMAP4 Mailbox Patch to change the IRQ flag from IRQF_DISABLED to IRQF_SHARED Currently, this facilitates both the tesla and ducati sides to request for the same irq through an omap_mbox_get() call. Signed-off-by: C A Subramaniam <subramaniam.ca@xxxxxx> Signed-off-by: Ramesh Gupta G <grgupta@xxxxxx> --- arch/arm/plat-omap/mailbox.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/plat-omap/mailbox.c b/arch/arm/plat-omap/mailbox.c index f6d6b67..84cf6af 100644 --- a/arch/arm/plat-omap/mailbox.c +++ b/arch/arm/plat-omap/mailbox.c @@ -276,7 +276,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 -- 1.5.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html