repo.or.cz
/
cris-mirror.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 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc
[cris-mirror.git]
/
arch
/
arm
/
mach-shmobile
/
include
/
mach
/
smp.h
blob
50db94e927adb16790b2cc404815a2b4fae84880
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
#if defined(CONFIG_ARM_GIC)
12
gic_raise_softirq
(
mask
,
ipi
);
13
#endif
14
}
15
16
#endif