repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'misc' into devel
[linux/fpc-iii.git]
/
arch
/
arm
/
mach-vexpress
/
include
/
mach
/
smp.h
blob
4c05e4a9713a311c0be2ee63912b32b6a21400b5
1
#ifndef __MACH_SMP_H
2
#define __MACH_SMP_H
3
4
#include <asm/hardware/gic.h>
5
6
/*
7
* We use IRQ1 as the IPI
8
*/
9
static
inline
void
smp_cross_call
(
const struct
cpumask
*
mask
,
int
ipi
)
10
{
11
gic_raise_softirq
(
mask
,
ipi
);
12
}
13
#endif