projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.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
|
blame
|
history
diff --git
a/arch/mips/kernel/kgdb.c
b/arch/mips/kernel/kgdb.c
index c5a8b2d21ca4c0b76dd71d5097a2eb20e596dc0a..15dbfd9803edb2061efb2da4c37a3581606206a2 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();
}