Merge remote branch 'nouveau/drm-nouveau-next' of /ssd/git/drm-nouveau-next into...
[pandora-kernel.git] / arch / arm / mach-s5pv310 / include / mach / smp.h
1 /* linux/arch/arm/mach-s5pv310/include/mach/smp.h
2  *
3  * Cloned from arch/arm/mach-realview/include/mach/smp.h
4 */
5
6 #ifndef ASM_ARCH_SMP_H
7 #define ASM_ARCH_SMP_H __FILE__
8
9 #include <asm/hardware/gic.h>
10
11 /*
12  * We use IRQ1 as the IPI
13  */
14 static inline void smp_cross_call(const struct cpumask *mask, int ipi)
15 {
16         gic_raise_softirq(mask, ipi);
17 }
18
19 #endif