diff options
Diffstat (limited to 'arch/arm/mach-clps711x/time.c')
-rw-r--r-- | arch/arm/mach-clps711x/time.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-clps711x/time.c b/arch/arm/mach-clps711x/time.c index 1a23f0dcd4b8..a071eac4a30a 100644 --- a/arch/arm/mach-clps711x/time.c +++ b/arch/arm/mach-clps711x/time.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/timex.h> | 19 | #include <linux/timex.h> |
20 | #include <linux/init.h> | 20 | #include <linux/init.h> |
21 | #include <linux/interrupt.h> | 21 | #include <linux/interrupt.h> |
22 | #include <linux/irq.h> | ||
22 | #include <linux/sched.h> | 23 | #include <linux/sched.h> |
23 | 24 | ||
24 | #include <asm/hardware.h> | 25 | #include <asm/hardware.h> |
@@ -57,7 +58,7 @@ p720t_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) | |||
57 | 58 | ||
58 | static struct irqaction clps711x_timer_irq = { | 59 | static struct irqaction clps711x_timer_irq = { |
59 | .name = "CLPS711x Timer Tick", | 60 | .name = "CLPS711x Timer Tick", |
60 | .flags = SA_INTERRUPT | SA_TIMER, | 61 | .flags = IRQF_DISABLED | IRQF_TIMER, |
61 | .handler = p720t_timer_interrupt, | 62 | .handler = p720t_timer_interrupt, |
62 | }; | 63 | }; |
63 | 64 | ||