diff options
Diffstat (limited to 'arch/arm/mach-sa1100/time.c')
-rw-r--r-- | arch/arm/mach-sa1100/time.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-sa1100/time.c b/arch/arm/mach-sa1100/time.c index e4b435e634e4..49ae716e16c2 100644 --- a/arch/arm/mach-sa1100/time.c +++ b/arch/arm/mach-sa1100/time.c | |||
@@ -11,6 +11,7 @@ | |||
11 | #include <linux/init.h> | 11 | #include <linux/init.h> |
12 | #include <linux/errno.h> | 12 | #include <linux/errno.h> |
13 | #include <linux/interrupt.h> | 13 | #include <linux/interrupt.h> |
14 | #include <linux/irq.h> | ||
14 | #include <linux/timex.h> | 15 | #include <linux/timex.h> |
15 | #include <linux/signal.h> | 16 | #include <linux/signal.h> |
16 | 17 | ||
@@ -110,7 +111,7 @@ sa1100_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) | |||
110 | 111 | ||
111 | static struct irqaction sa1100_timer_irq = { | 112 | static struct irqaction sa1100_timer_irq = { |
112 | .name = "SA11xx Timer Tick", | 113 | .name = "SA11xx Timer Tick", |
113 | .flags = SA_INTERRUPT | SA_TIMER, | 114 | .flags = IRQF_DISABLED | IRQF_TIMER, |
114 | .handler = sa1100_timer_interrupt, | 115 | .handler = sa1100_timer_interrupt, |
115 | }; | 116 | }; |
116 | 117 | ||