diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2006-07-01 22:29:31 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-02 16:58:49 -0400 |
commit | 85ac3ab254405edcc7bef7d61b03930247882efc (patch) | |
tree | c04185d2c34b2be3abe8eaf4016696597321e852 /arch/xtensa | |
parent | b1e05aa2303e48b16e850c4be2513e60a3495238 (diff) |
[PATCH] irq-flags: XTENSA: Use the new IRQF_ constants
Use the new IRQF_ constants and remove the SA_INTERRUPT define
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Chris Zankel <chris@zankel.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/xtensa')
-rw-r--r-- | arch/xtensa/kernel/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/xtensa/kernel/time.c b/arch/xtensa/kernel/time.c index 4a2c365ba684..412ab32de391 100644 --- a/arch/xtensa/kernel/time.c +++ b/arch/xtensa/kernel/time.c | |||
@@ -52,7 +52,7 @@ unsigned long long sched_clock(void) | |||
52 | static irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs); | 52 | static irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs); |
53 | static struct irqaction timer_irqaction = { | 53 | static struct irqaction timer_irqaction = { |
54 | .handler = timer_interrupt, | 54 | .handler = timer_interrupt, |
55 | .flags = SA_INTERRUPT, | 55 | .flags = IRQF_DISABLED, |
56 | .name = "timer", | 56 | .name = "timer", |
57 | }; | 57 | }; |
58 | 58 | ||