Skip to content

Commit

Permalink
ARM: 8001/1: mmp: remove deprecated IRQF_DISABLED
Browse files Browse the repository at this point in the history
This patch removes the use of the IRQF_DISABLED flag
from arch/arm/mach-mmp/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>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Michael Opdenacker authored and Russell King committed Mar 12, 2014
1 parent 78f6db9 commit 9929eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-mmp/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ static void __init timer_config(void)

static struct irqaction timer_irq = {
.name = "timer",
.flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL,
.flags = IRQF_TIMER | IRQF_IRQPOLL,
.handler = timer_interrupt,
.dev_id = &ckevt,
};
Expand Down

0 comments on commit 9929eed

Please sign in to comment.