linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: daniel.lezcano@linaro.org (Daniel Lezcano)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 07/17] ARM: footbridge: Remove deprecated IRQF_DISABLED flag
Date: Mon, 30 Dec 2013 17:09:21 +0100	[thread overview]
Message-ID: <1388419771-30075-7-git-send-email-daniel.lezcano@linaro.org> (raw)
In-Reply-To: <1388419771-30075-1-git-send-email-daniel.lezcano@linaro.org>

This flag is a NOOP and scheduled to be removed

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
---
 arch/arm/mach-footbridge/dc21285-timer.c |    2 +-
 arch/arm/mach-footbridge/dc21285.c       |   10 +++++-----
 arch/arm/mach-footbridge/isa-timer.c     |    2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/arch/arm/mach-footbridge/dc21285-timer.c b/arch/arm/mach-footbridge/dc21285-timer.c
index 9ee78f7..892d550 100644
--- a/arch/arm/mach-footbridge/dc21285-timer.c
+++ b/arch/arm/mach-footbridge/dc21285-timer.c
@@ -86,7 +86,7 @@ static irqreturn_t timer1_interrupt(int irq, void *dev_id)
 static struct irqaction footbridge_timer_irq = {
 	.name		= "dc21285_timer1",
 	.handler	= timer1_interrupt,
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.dev_id		= &ckevt_dc21285,
 };
 
diff --git a/arch/arm/mach-footbridge/dc21285.c b/arch/arm/mach-footbridge/dc21285.c
index 7c2fdae..96a3d73 100644
--- a/arch/arm/mach-footbridge/dc21285.c
+++ b/arch/arm/mach-footbridge/dc21285.c
@@ -334,15 +334,15 @@ void __init dc21285_preinit(void)
 	/*
 	 * We don't care if these fail.
 	 */
-	dc21285_request_irq(IRQ_PCI_SERR, dc21285_serr_irq, IRQF_DISABLED,
+	dc21285_request_irq(IRQ_PCI_SERR, dc21285_serr_irq, 0,
 			    "PCI system error", &serr_timer);
-	dc21285_request_irq(IRQ_PCI_PERR, dc21285_parity_irq, IRQF_DISABLED,
+	dc21285_request_irq(IRQ_PCI_PERR, dc21285_parity_irq, 0,
 			    "PCI parity error", &perr_timer);
-	dc21285_request_irq(IRQ_PCI_ABORT, dc21285_abort_irq, IRQF_DISABLED,
+	dc21285_request_irq(IRQ_PCI_ABORT, dc21285_abort_irq, 0,
 			    "PCI abort", NULL);
-	dc21285_request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, IRQF_DISABLED,
+	dc21285_request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, 0,
 			    "Discard timer", NULL);
-	dc21285_request_irq(IRQ_PCI_DPERR, dc21285_dparity_irq, IRQF_DISABLED,
+	dc21285_request_irq(IRQ_PCI_DPERR, dc21285_dparity_irq, 0,
 			    "PCI data parity", NULL);
 
 	if (cfn_mode) {
diff --git a/arch/arm/mach-footbridge/isa-timer.c b/arch/arm/mach-footbridge/isa-timer.c
index d9301dd..b73f52e 100644
--- a/arch/arm/mach-footbridge/isa-timer.c
+++ b/arch/arm/mach-footbridge/isa-timer.c
@@ -27,7 +27,7 @@ static irqreturn_t pit_timer_interrupt(int irq, void *dev_id)
 static struct irqaction pit_timer_irq = {
 	.name		= "pit",
 	.handler	= pit_timer_interrupt,
-	.flags		= IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
+	.flags		= IRQF_TIMER | IRQF_IRQPOLL,
 	.dev_id		= &i8253_clockevent,
 };
 
-- 
1.7.9.5

  parent reply	other threads:[~2013-12-30 16:09 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-30 16:09 [PATCH 01/17] ARM: spear: Remove deprecated IRQF_DISABLED flag Daniel Lezcano
2013-12-30 16:09 ` [PATCH 02/17] ARM: ixp4xx: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 03/17] ARM: sa1100: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 04/17] ARM: mmp: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 05/17] ARM: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 06/17] ARM: cns3xxx: " Daniel Lezcano
2013-12-30 16:09 ` Daniel Lezcano [this message]
2013-12-30 16:09 ` [PATCH 08/17] ARM: ks8695: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 09/17] ARM: u300: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 10/17] ARM: rpc: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 11/17] ARM: iop: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 12/17] ARM: integrator: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 13/17] ARM: lpc32xx: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 14/17] ARM: netx: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 15/17] ARM: imx: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 16/17] ARM: ebsa110: " Daniel Lezcano
2013-12-30 16:09 ` [PATCH 17/17] ARM: w90x900: " Daniel Lezcano
2014-01-02 18:29 ` [PATCH 01/17] ARM: spear: " Arnd Bergmann
2014-01-02 18:51   ` Daniel Lezcano
2014-01-03 14:34     ` Arnd Bergmann

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=1388419771-30075-7-git-send-email-daniel.lezcano@linaro.org \
    --to=daniel.lezcano@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).