Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 203d2fbb authored by Michael Opdenacker's avatar Michael Opdenacker Committed by Lennox Wu
Browse files

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: default avatarMichael Opdenacker <michael.opdenacker@free-electrons.com>
Acked-by: default avatarLennox Wu <lennox.wu@gmail.com>
parent 000ab4b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -41,7 +41,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id)


static struct irqaction timer_irq = {
static struct irqaction timer_irq = {
	.handler = timer_interrupt,
	.handler = timer_interrupt,
	.flags = IRQF_DISABLED | IRQF_TIMER,
	.flags = IRQF_TIMER,
	.name = "timer",
	.name = "timer",
};
};