From: Santosh Shilimkar <santosh.shilimkar@ti.com>
To: Michael Opdenacker <michael.opdenacker@free-electrons.com>,
<nm@ti.com>, <peter.ujfalusi@ti.com>, <tony@atomide.com>,
<afzal@ti.com>, <akpm@linux-foundation.org>
Cc: <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] [RESEND] drivers: bus: omap_l3: remove deprecated IRQF_DISABLED
Date: Wed, 1 Oct 2014 09:50:16 -0400 [thread overview]
Message-ID: <542C0698.5030704@ti.com> (raw)
In-Reply-To: <1412158507-7229-1-git-send-email-michael.opdenacker@free-electrons.com>
On Wednesday 01 October 2014 06:15 AM, Michael Opdenacker wrote:
> 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 <michael.opdenacker@free-electrons.com>
> ---
Should be ok I guess.
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
> 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 531ae591783b..547a0fdba583 100644
> --- a/drivers/bus/omap_l3_noc.c
> +++ b/drivers/bus/omap_l3_noc.c
> @@ -280,7 +280,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);
> @@ -289,7 +289,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 acc216491b8a..769d64c0b0fe 100644
> --- a/drivers/bus/omap_l3_smx.c
> +++ b/drivers/bus/omap_l3_smx.c
> @@ -238,8 +238,7 @@ static int __init 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;
> @@ -247,8 +246,7 @@ static int __init 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;
>
next prev parent reply other threads:[~2014-10-01 13:50 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-12 4:37 [PATCH] drivers: bus: omap_l3: remove deprecated IRQF_DISABLED Michael Opdenacker
2013-10-17 1:27 ` Greg KH
[not found] ` <20131017012703.GA4704-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2013-12-09 9:28 ` [PATCH][RESEND] " Michael Opdenacker
2013-12-09 9:28 ` Michael Opdenacker
[not found] ` <1386581319-4482-1-git-send-email-michael.opdenacker-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2014-03-05 5:01 ` [PATCH] [RESEND] " Michael Opdenacker
2014-03-05 5:01 ` Michael Opdenacker
[not found] ` <1393995663-2966-1-git-send-email-michael.opdenacker-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
2014-03-18 8:10 ` Michael Opdenacker
2014-03-18 8:10 ` Michael Opdenacker
2014-10-01 10:15 ` Michael Opdenacker
2014-10-01 13:50 ` Santosh Shilimkar [this message]
2015-03-27 1:11 ` Michael Opdenacker
2015-03-30 16:36 ` Tony Lindgren
2015-03-31 4:38 ` Nishanth Menon
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=542C0698.5030704@ti.com \
--to=santosh.shilimkar@ti.com \
--cc=afzal@ti.com \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michael.opdenacker@free-electrons.com \
--cc=nm@ti.com \
--cc=peter.ujfalusi@ti.com \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.