From patchwork Fri Sep 4 11:48:38 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "C.A, Subramaniam" X-Patchwork-Id: 45674 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n84BkVeE029365 for ; Fri, 4 Sep 2009 11:47:57 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756721AbZIDLry (ORCPT ); Fri, 4 Sep 2009 07:47:54 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756727AbZIDLrx (ORCPT ); Fri, 4 Sep 2009 07:47:53 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:58033 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756721AbZIDLrx convert rfc822-to-8bit (ORCPT ); Fri, 4 Sep 2009 07:47:53 -0400 Received: from dbdp20.itg.ti.com ([172.24.170.38]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id n84Blh2W024519; Fri, 4 Sep 2009 06:47:49 -0500 Received: from dbde71.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id n84BlhiL016288; Fri, 4 Sep 2009 17:17:43 +0530 (IST) Received: from dbde02.ent.ti.com ([172.24.170.145]) by dbde71.ent.ti.com ([172.24.170.149]) with mapi; Fri, 4 Sep 2009 17:17:43 +0530 From: "C.A, Subramaniam" To: "linux-omap@vger.kernel.org" CC: "tony@atomide.com" , "Hiroshi.DOYU@nokia.com" , "rmk@arm.linux.org.uk" , "Kanigeri, Hari" , "Gupta, Ramesh" Date: Fri, 4 Sep 2009 17:18:38 +0530 Subject: [PATCH 9/10] omap mailbox: OMAP4 Mailbox Patch to change the IRQ flag from IRQF_DISABLED to IRQF_SHARED Thread-Topic: [PATCH 9/10] omap mailbox: OMAP4 Mailbox Patch to change the IRQ flag from IRQF_DISABLED to IRQF_SHARED Thread-Index: AcotVaRbb46e8OF/ROG2ydypkJCruA== Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org From 26e994864872ffc5fca3b059671b2edbdac69e6e Mon Sep 17 00:00:00 2001 From: C A Subramaniam 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 Signed-off-by: Ramesh Gupta G --- 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