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 'v6v7' into devel
[linux/fpc-iii.git]
/
arch
/
arm
/
mach-tegra
/
include
/
mach
/
smp.h
blob
c8221b38ee7c32ec2e53d5a24fe6c0a90e6c3743
1
#ifndef ASMARM_ARCH_SMP_H
2
#define ASMARM_ARCH_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
14
#endif