diff options
-rw-r--r-- | arch/cris/arch-v10/kernel/time.c | 8 | ||||
-rw-r--r-- | arch/cris/arch-v32/kernel/smp.c | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/arch/cris/arch-v10/kernel/time.c b/arch/cris/arch-v10/kernel/time.c index 077e973c33f0..575a14bb1106 100644 --- a/arch/cris/arch-v10/kernel/time.c +++ b/arch/cris/arch-v10/kernel/time.c | |||
@@ -254,8 +254,12 @@ timer_interrupt(int irq, void *dev_id, struct pt_regs *regs) | |||
254 | * it needs to be IRQF_DISABLED to make the jiffies update work properly | 254 | * it needs to be IRQF_DISABLED to make the jiffies update work properly |
255 | */ | 255 | */ |
256 | 256 | ||
257 | static struct irqaction irq2 = { timer_interrupt, IRQF_SHARED | IRQF_DISABLED, | 257 | static struct irqaction irq2 = { |
258 | CPU_MASK_NONE, "timer", NULL, NULL}; | 258 | .handler = timer_interrupt, |
259 | .flags = IRQF_SHARED | IRQF_DISABLED, | ||
260 | .mask = CPU_MASK_NONE, | ||
261 | .name = "timer", | ||
262 | }; | ||
259 | 263 | ||
260 | void __init | 264 | void __init |
261 | time_init(void) | 265 | time_init(void) |
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); |