aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/powerpc/kernel/machine_kexec.c2
-rw-r--r--include/asm-powerpc/machdep.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/machine_kexec.c b/arch/powerpc/kernel/machine_kexec.c
index d8225c797199..a91e40c9ae45 100644
--- a/arch/powerpc/kernel/machine_kexec.c
+++ b/arch/powerpc/kernel/machine_kexec.c
@@ -23,7 +23,7 @@ note_buf_t crash_notes[NR_CPUS];
23void machine_crash_shutdown(struct pt_regs *regs) 23void machine_crash_shutdown(struct pt_regs *regs)
24{ 24{
25 if (ppc_md.machine_crash_shutdown) 25 if (ppc_md.machine_crash_shutdown)
26 ppc_md.machine_crash_shutdown(); 26 ppc_md.machine_crash_shutdown(regs);
27} 27}
28 28
29/* 29/*
diff --git a/include/asm-powerpc/machdep.h b/include/asm-powerpc/machdep.h
index d6a1a2b5507d..32539022f0a4 100644
--- a/include/asm-powerpc/machdep.h
+++ b/include/asm-powerpc/machdep.h
@@ -222,7 +222,7 @@ struct machdep_calls {
222 * to run successfully. 222 * to run successfully.
223 * XXX Should we move this one out of kexec scope? 223 * XXX Should we move this one out of kexec scope?
224 */ 224 */
225 void (*machine_crash_shutdown)(void); 225 void (*machine_crash_shutdown)(struct pt_regs *regs);
226 226
227 /* Called to do what every setup is needed on image and the 227 /* Called to do what every setup is needed on image and the
228 * reboot code buffer. Returns 0 on success. 228 * reboot code buffer. Returns 0 on success.