diff options
author | C A Subramaniam <subramaniam.ca@ti.com> | 2009-11-22 13:11:23 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-11-22 13:24:33 -0500 |
commit | 5e68382592adba993dad6b59655b7ff51a6ed049 (patch) | |
tree | d8a10a549cb8f5b6bed00ffc89519c2c3e4b429a /arch | |
parent | 5f00ec64a38563f1e5d8a852f2279047edecd0b8 (diff) |
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@ti.com>
Signed-off-by: Ramesh Gupta G <grgupta@ti.com>
Acked-by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r-- | 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 2210c45a52f..4d7947e5dd9 100644 --- a/arch/arm/plat-omap/mailbox.c +++ b/arch/arm/plat-omap/mailbox.c | |||
@@ -284,7 +284,7 @@ static int omap_mbox_startup(struct omap_mbox *mbox) | |||
284 | write_unlock(&mboxes_lock); | 284 | write_unlock(&mboxes_lock); |
285 | } | 285 | } |
286 | 286 | ||
287 | ret = request_irq(mbox->irq, mbox_interrupt, IRQF_DISABLED, | 287 | ret = request_irq(mbox->irq, mbox_interrupt, IRQF_SHARED, |
288 | mbox->name, mbox); | 288 | mbox->name, mbox); |
289 | if (unlikely(ret)) { | 289 | if (unlikely(ret)) { |
290 | printk(KERN_ERR | 290 | printk(KERN_ERR |