aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/platform/coldfire/sltimers.c
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@free-electrons.com>2013-09-07 01:43:08 -0400
committerGeert Uytterhoeven <geert@linux-m68k.org>2013-09-26 03:54:16 -0400
commit77a42796786c2ea2d3a67262fb5f1f707c3e0594 (patch)
treea93f7eac94f0d118ebda42509093b872f7b0efd0 /arch/m68k/platform/coldfire/sltimers.c
parent21e884bafa039fab0facd327c9380b58151e73f2 (diff)
m68k: Remove deprecated IRQF_DISABLED
This patch proposes to remove the IRQF_DISABLED flag from m68k architecture code. 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: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/platform/coldfire/sltimers.c')
-rw-r--r--arch/m68k/platform/coldfire/sltimers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m68k/platform/coldfire/sltimers.c b/arch/m68k/platform/coldfire/sltimers.c
index bb5a25ada848..831a08cf6f40 100644
--- a/arch/m68k/platform/coldfire/sltimers.c
+++ b/arch/m68k/platform/coldfire/sltimers.c
@@ -51,7 +51,7 @@ irqreturn_t mcfslt_profile_tick(int irq, void *dummy)
51 51
52static struct irqaction mcfslt_profile_irq = { 52static struct irqaction mcfslt_profile_irq = {
53 .name = "profile timer", 53 .name = "profile timer",
54 .flags = IRQF_DISABLED | IRQF_TIMER, 54 .flags = IRQF_TIMER,
55 .handler = mcfslt_profile_tick, 55 .handler = mcfslt_profile_tick,
56}; 56};
57 57
@@ -93,7 +93,7 @@ static irqreturn_t mcfslt_tick(int irq, void *dummy)
93 93
94static struct irqaction mcfslt_timer_irq = { 94static struct irqaction mcfslt_timer_irq = {
95 .name = "timer", 95 .name = "timer",
96 .flags = IRQF_DISABLED | IRQF_TIMER, 96 .flags = IRQF_TIMER,
97 .handler = mcfslt_tick, 97 .handler = mcfslt_tick,
98}; 98};
99 99