1 #ifndef ASMARM_ARCH_SMP_H 2 #define ASMARM_ARCH_SMP_H 3 4 #include <asm/hardware/gic.h> 5 6 /* 7 * We use IRQ1 as the IPI 8 */ smp_cross_call(const struct cpumask * mask,int ipi)9static inline void smp_cross_call(const struct cpumask *mask, int ipi) 10 { 11 gic_raise_softirq(mask, ipi); 12 } 13 14 #endif 15