diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-03-06 04:42:04 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-06 12:30:24 -0500 |
commit | e585047ef97b4002a7f416b0ca01ab894f7755de (patch) | |
tree | 984e57ee05bd91eb7ca39e5dc928c772456df666 /arch/i386 | |
parent | 0de1517e23c2e28d58a6344b97a120596ea200bb (diff) |
[PATCH] Scheduled removal of SA_xxx interrupt flags fixups 3
The obsolete SA_xxx interrupt flags have been used despite the scheduled
removal. Fixup the remaining users.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Ingo Molnar <mingo@elte.hu>
Cc: Zachary Amsden <zach@vmware.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/vmitime.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/arch/i386/kernel/vmitime.c b/arch/i386/kernel/vmitime.c index 8dc72d575666..9dfb17739b67 100644 --- a/arch/i386/kernel/vmitime.c +++ b/arch/i386/kernel/vmitime.c | |||
@@ -123,12 +123,10 @@ static struct clocksource clocksource_vmi = { | |||
123 | static irqreturn_t vmi_timer_interrupt(int irq, void *dev_id); | 123 | static irqreturn_t vmi_timer_interrupt(int irq, void *dev_id); |
124 | 124 | ||
125 | static struct irqaction vmi_timer_irq = { | 125 | static struct irqaction vmi_timer_irq = { |
126 | vmi_timer_interrupt, | 126 | .handler = vmi_timer_interrupt, |
127 | SA_INTERRUPT, | 127 | .flags = IRQF_DISABLED, |
128 | CPU_MASK_NONE, | 128 | .mask = CPU_MASK_NONE, |
129 | "VMI-alarm", | 129 | .name = "VMI-alarm", |
130 | NULL, | ||
131 | NULL | ||
132 | }; | 130 | }; |
133 | 131 | ||
134 | /* Alarm rate */ | 132 | /* Alarm rate */ |