From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753208AbbC3QkM (ORCPT ); Mon, 30 Mar 2015 12:40:12 -0400 Received: from muru.com ([72.249.23.125]:40798 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752884AbbC3QkJ (ORCPT ); Mon, 30 Mar 2015 12:40:09 -0400 Date: Mon, 30 Mar 2015 09:36:01 -0700 From: Tony Lindgren To: Michael Opdenacker Cc: akpm@linux-foundation.org, nm@ti.com, santosh.shilimkar@ti.com, peter.ujfalusi@ti.com, rnayak@ti.com, afzal@ti.com, r.sricharan@ti.com, j-keerthy@ti.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH] [RESEND] drivers: bus: omap_l3: remove deprecated IRQF_DISABLED Message-ID: <20150330163601.GI10805@atomide.com> References: <542C0698.5030704@ti.com> <1427418707-25842-1-git-send-email-michael.opdenacker@free-electrons.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1427418707-25842-1-git-send-email-michael.opdenacker@free-electrons.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Michael Opdenacker [150326 18:12]: > This patch removes the use of the IRQF_DISABLED flag > from drivers/bus/omap_l3_* > > It's a NOOP since 2.6.35 and it will be removed one day. > > Signed-off-by: Michael Opdenacker > Acked-by: Santosh Shilimkar Currently there are no other patches pending for this driver, probably best that Andrew picks it up: Acked-by: Tony Lindgren > --- > drivers/bus/omap_l3_noc.c | 4 ++-- > drivers/bus/omap_l3_smx.c | 6 ++---- > 2 files changed, 4 insertions(+), 6 deletions(-) > > diff --git a/drivers/bus/omap_l3_noc.c b/drivers/bus/omap_l3_noc.c > index 029bc73de001..602298b527e8 100644 > --- a/drivers/bus/omap_l3_noc.c > +++ b/drivers/bus/omap_l3_noc.c > @@ -284,7 +284,7 @@ static int omap_l3_probe(struct platform_device *pdev) > */ > l3->debug_irq = platform_get_irq(pdev, 0); > ret = devm_request_irq(l3->dev, l3->debug_irq, l3_interrupt_handler, > - IRQF_DISABLED, "l3-dbg-irq", l3); > + 0, "l3-dbg-irq", l3); > if (ret) { > dev_err(l3->dev, "request_irq failed for %d\n", > l3->debug_irq); > @@ -293,7 +293,7 @@ static int omap_l3_probe(struct platform_device *pdev) > > l3->app_irq = platform_get_irq(pdev, 1); > ret = devm_request_irq(l3->dev, l3->app_irq, l3_interrupt_handler, > - IRQF_DISABLED, "l3-app-irq", l3); > + 0, "l3-app-irq", l3); > if (ret) > dev_err(l3->dev, "request_irq failed for %d\n", l3->app_irq); > > diff --git a/drivers/bus/omap_l3_smx.c b/drivers/bus/omap_l3_smx.c > index 597fdaee7315..0b07895f2eb4 100644 > --- a/drivers/bus/omap_l3_smx.c > +++ b/drivers/bus/omap_l3_smx.c > @@ -252,8 +252,7 @@ static int omap3_l3_probe(struct platform_device *pdev) > > l3->debug_irq = platform_get_irq(pdev, 0); > ret = request_irq(l3->debug_irq, omap3_l3_app_irq, > - IRQF_DISABLED | IRQF_TRIGGER_RISING, > - "l3-debug-irq", l3); > + IRQF_TRIGGER_RISING, "l3-debug-irq", l3); > if (ret) { > dev_err(&pdev->dev, "couldn't request debug irq\n"); > goto err1; > @@ -261,8 +260,7 @@ static int omap3_l3_probe(struct platform_device *pdev) > > l3->app_irq = platform_get_irq(pdev, 1); > ret = request_irq(l3->app_irq, omap3_l3_app_irq, > - IRQF_DISABLED | IRQF_TRIGGER_RISING, > - "l3-app-irq", l3); > + IRQF_TRIGGER_RISING, "l3-app-irq", l3); > if (ret) { > dev_err(&pdev->dev, "couldn't request app irq\n"); > goto err2; > -- > 2.1.0 >