diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-16 04:26:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-16 12:43:04 -0400 |
commit | e5f717812982c7b2a20d5f2d897f7cce6db9c5e6 (patch) | |
tree | 2eb8bf2ea24c591bcac2e588f8bca654561514d6 /arch/cris/arch-v32 | |
parent | 0ac15559150a20d39d381a6be44cdea373584222 (diff) |
CRIS: cleanup struct irqaction initializers
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Mikael Starvik <starvik@axis.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/cris/arch-v32')
-rw-r--r-- | arch/cris/arch-v32/kernel/smp.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/cris/arch-v32/kernel/smp.c b/arch/cris/arch-v32/kernel/smp.c index 77e655f26560..697494bc2de1 100644 --- a/arch/cris/arch-v32/kernel/smp.c +++ b/arch/cris/arch-v32/kernel/smp.c | |||
@@ -63,8 +63,12 @@ static unsigned long irq_regs[NR_CPUS] = | |||
63 | 63 | ||
64 | static irqreturn_t crisv32_ipi_interrupt(int irq, void *dev_id, struct pt_regs *regs); | 64 | static irqreturn_t crisv32_ipi_interrupt(int irq, void *dev_id, struct pt_regs *regs); |
65 | static int send_ipi(int vector, int wait, cpumask_t cpu_mask); | 65 | static int send_ipi(int vector, int wait, cpumask_t cpu_mask); |
66 | static struct irqaction irq_ipi = { crisv32_ipi_interrupt, IRQF_DISABLED, | 66 | static struct irqaction irq_ipi = { |
67 | CPU_MASK_NONE, "ipi", NULL, NULL}; | 67 | .handler = crisv32_ipi_interrupt, |
68 | .flags = IRQF_DISABLED, | ||
69 | .mask = CPU_MASK_NONE, | ||
70 | .name = "ipi", | ||
71 | }; | ||
68 | 72 | ||
69 | extern void cris_mmu_init(void); | 73 | extern void cris_mmu_init(void); |
70 | extern void cris_timer_init(void); | 74 | extern void cris_timer_init(void); |