diff options
Diffstat (limited to 'arch/mips/mti-malta/malta-int.c')
-rw-r--r-- | arch/mips/mti-malta/malta-int.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/mips/mti-malta/malta-int.c b/arch/mips/mti-malta/malta-int.c index 4e14972dcfc4..bc0ba58acfd5 100644 --- a/arch/mips/mti-malta/malta-int.c +++ b/arch/mips/mti-malta/malta-int.c | |||
@@ -336,6 +336,16 @@ static int gic_resched_int_base; | |||
336 | static int gic_call_int_base; | 336 | static int gic_call_int_base; |
337 | #define GIC_RESCHED_INT(cpu) (gic_resched_int_base+(cpu)) | 337 | #define GIC_RESCHED_INT(cpu) (gic_resched_int_base+(cpu)) |
338 | #define GIC_CALL_INT(cpu) (gic_call_int_base+(cpu)) | 338 | #define GIC_CALL_INT(cpu) (gic_call_int_base+(cpu)) |
339 | |||
340 | unsigned int plat_ipi_call_int_xlate(unsigned int cpu) | ||
341 | { | ||
342 | return GIC_CALL_INT(cpu); | ||
343 | } | ||
344 | |||
345 | unsigned int plat_ipi_resched_int_xlate(unsigned int cpu) | ||
346 | { | ||
347 | return GIC_RESCHED_INT(cpu); | ||
348 | } | ||
339 | #endif /* CONFIG_MIPS_MT_SMP */ | 349 | #endif /* CONFIG_MIPS_MT_SMP */ |
340 | 350 | ||
341 | static struct irqaction i8259irq = { | 351 | static struct irqaction i8259irq = { |