forked from luck/tmp_suning_uos_patched
4073723acb
Conflicts: arch/arm/Kconfig arch/arm/common/Makefile arch/arm/kernel/Makefile arch/arm/kernel/smp.c
20 lines
348 B
C
20 lines
348 B
C
/* linux/arch/arm/mach-s5pv310/include/mach/smp.h
|
|
*
|
|
* Cloned from arch/arm/mach-realview/include/mach/smp.h
|
|
*/
|
|
|
|
#ifndef ASM_ARCH_SMP_H
|
|
#define ASM_ARCH_SMP_H __FILE__
|
|
|
|
#include <asm/hardware/gic.h>
|
|
|
|
/*
|
|
* We use IRQ1 as the IPI
|
|
*/
|
|
static inline void smp_cross_call(const struct cpumask *mask, int ipi)
|
|
{
|
|
gic_raise_softirq(mask, ipi);
|
|
}
|
|
|
|
#endif
|