aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm26/kernel/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm26/kernel/time.c')
-rw-r--r--arch/arm26/kernel/time.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm26/kernel/time.c b/arch/arm26/kernel/time.c
index 335525339ad6..db63d75d0715 100644
--- a/arch/arm26/kernel/time.c
+++ b/arch/arm26/kernel/time.c
@@ -18,7 +18,6 @@
18 * "A Kernel Model for Precision Timekeeping" by Dave Mills 18 * "A Kernel Model for Precision Timekeeping" by Dave Mills
19 */ 19 */
20 20
21#include <linux/config.h>
22#include <linux/module.h> 21#include <linux/module.h>
23#include <linux/kernel.h> 22#include <linux/kernel.h>
24#include <linux/interrupt.h> 23#include <linux/interrupt.h>
@@ -206,7 +205,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
206 205
207static struct irqaction timer_irq = { 206static struct irqaction timer_irq = {
208 .name = "timer", 207 .name = "timer",
209 .flags = SA_INTERRUPT, 208 .flags = IRQF_DISABLED,
210 .handler = timer_interrupt, 209 .handler = timer_interrupt,
211}; 210};
212 211