aboutsummaryrefslogtreecommitdiff
path: root/arch/score
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@free-electrons.com>2014-10-01 12:04:58 +0200
committerLennox Wu <lennox.wu@gmail.com>2014-10-05 01:18:17 +0800
commit203d2fbbec279e86f59e10662800ebbb0b5ce740 (patch)
treed977e7a7d627fdb2496fa9e5b804355e28457874 /arch/score
parent000ab4b0a7afaa3799ffd8cc41a4328ee999990b (diff)
score: remove deprecated IRQF_DISABLED
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>
Diffstat (limited to 'arch/score')
-rw-r--r--arch/score/kernel/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/score/kernel/time.c b/arch/score/kernel/time.c
index f0a43affb201..24770cd9b473 100644
--- a/arch/score/kernel/time.c
+++ b/arch/score/kernel/time.c
@@ -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",
};