]> git.karo-electronics.de Git - mv-sheeva.git/blob - arch/arm/mach-tegra/include/mach/smp.h
Merge branch 'for-rmk' of git://git.pengutronix.de/git/imx/linux-2.6 into devel-stable
[mv-sheeva.git] / arch / arm / mach-tegra / include / mach / smp.h
1 #ifndef ASMARM_ARCH_SMP_H
2 #define ASMARM_ARCH_SMP_H
3
4 #include <asm/hardware/gic.h>
5 #include <asm/smp_mpidr.h>
6
7 /*
8  * We use IRQ1 as the IPI
9  */
10 static inline void smp_cross_call(const struct cpumask *mask)
11 {
12         gic_raise_softirq(mask, 1);
13 }
14
15 /*
16  * Do nothing on MPcore.
17  */
18 static inline void smp_cross_call_done(cpumask_t callmap)
19 {
20 }
21
22 #endif