diff options
Diffstat (limited to 'arch/cris/arch-v32/kernel/smp.c')
-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); |