]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
score: remove deprecated IRQF_DISABLED
authorMichael Opdenacker <michael.opdenacker@free-electrons.com>
Wed, 1 Oct 2014 10:04:58 +0000 (12:04 +0200)
committerLennox Wu <lennox.wu@gmail.com>
Sat, 4 Oct 2014 17:18:17 +0000 (01:18 +0800)
This patch removes the use of the IRQF_DISABLED flag
from arch/score/kernel/time.c

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>
Acked-by: Lennox Wu <lennox.wu@gmail.com>
arch/score/kernel/time.c

index f0a43affb201b8512e52bca724e2d502b88e5284..24770cd9b473a51aabcca380ae3f1f3d7ab68e5e 100644 (file)
@@ -41,7 +41,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id)
 
 static struct irqaction timer_irq = {
        .handler = timer_interrupt,
-       .flags = IRQF_DISABLED | IRQF_TIMER,
+       .flags = IRQF_TIMER,
        .name = "timer",
 };