projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1374d08
)
[MIPS] kgdb: smp_call_function's 3rd argument is a pointer.
author
Ralf Baechle
<ralf@linux-mips.org>
Tue, 5 Aug 2008 22:42:16 +0000
(23:42 +0100)
committer
Ralf Baechle
<ralf@linux-mips.org>
Tue, 26 Aug 2008 08:10:23 +0000
(09:10 +0100)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/kgdb.c
patch
|
blob
|
history
diff --git
a/arch/mips/kernel/kgdb.c
b/arch/mips/kernel/kgdb.c
index
c5a8b2d
..
15dbfd9
100644
(file)
--- a/
arch/mips/kernel/kgdb.c
+++ b/
arch/mips/kernel/kgdb.c
@@
-68,7
+68,7
@@
static void kgdb_call_nmi_hook(void *ignored)
void kgdb_roundup_cpus(unsigned long flags)
{
local_irq_enable();
- smp_call_function(kgdb_call_nmi_hook, NULL,
NULL
);
+ smp_call_function(kgdb_call_nmi_hook, NULL,
0
);
local_irq_disable();
}