[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>
このコミットが含まれているのは:
Michael Ellerman
2005-12-04 18:39:12 +11:00
committed by Paul Mackerras
コミット cd0ca2ce4b
2個のファイルの変更2行の追加2行の削除

ファイルの表示

@@ -23,7 +23,7 @@ note_buf_t crash_notes[NR_CPUS];
void machine_crash_shutdown(struct pt_regs *regs)
{
if (ppc_md.machine_crash_shutdown)
ppc_md.machine_crash_shutdown();
ppc_md.machine_crash_shutdown(regs);
}
/*