Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_realme_mt6785
/
5f05647dd81c11a6a165ccc8f0c1370b16f3bcb0
/
.
/
arch
/
arm
/
mach-realview
/
include
/
mach
/
smp.h
blob: d3cd265cb058c4acf0d29c4a14a16e097aa1ee55 [
file
] [
log
] [
blame
]
#ifndef
ASMARM_ARCH_SMP_H
#define
ASMARM_ARCH_SMP_H
#include
<asm/hardware/gic.h>
#include
<asm/smp_mpidr.h>
/*
* We use IRQ1 as the IPI
*/
static
inline
void
smp_cross_call
(
const
struct
cpumask
*
mask
)
{
gic_raise_softirq
(
mask
,
1
);
}
#endif