aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/machdep.h
diff options
context:
space:
mode:
authorMichael Ellerman <michael@ellerman.id.au>2005-12-04 18:39:12 +1100
committerPaul Mackerras <paulus@samba.org>2006-01-09 14:51:47 +1100
commitcd0ca2ce4b2f4a5132e7e230be8a510755c20870 (patch)
tree23fe531715b81c852db240b096c8ac43e20dd1c0 /include/asm-powerpc/machdep.h
parent[PATCH] powerpc32: fix definition of distribute_irqs (diff)
downloadlinux-dev-cd0ca2ce4b2f4a5132e7e230be8a510755c20870.tar.xz
linux-dev-cd0ca2ce4b2f4a5132e7e230be8a510755c20870.zip
[PATCH] powerpc: Propagate regs through to machine_crash_shutdown
Currently machine_crash_shutdown() gets a struct pt_regs, but doesn't pass it through to the ppc_md function, it should. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/machdep.h')
-rw-r--r--include/asm-powerpc/machdep.h2
1 files changed, 1 insertions, 1 deletions
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 {
* to run successfully.
* XXX Should we move this one out of kexec scope?
*/
- void (*machine_crash_shutdown)(void);
+ void (*machine_crash_shutdown)(struct pt_regs *regs);
/* Called to do what every setup is needed on image and the
* reboot code buffer. Returns 0 on success.