diff options
author | Olof Johansson <olof@lixom.net> | 2007-09-04 22:41:09 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-09-13 11:33:22 -0400 |
commit | 01f1c735f57548e6b862e815cc845e452405643d (patch) | |
tree | 3b9f8f4fc7a37caf204673c905de7f59dcf8b8c5 /arch/powerpc/kernel/traps.c | |
parent | 3850169dbddcc9e53fd550eb093af7da5dfcefa9 (diff) |
[POWERPC] Remove unused platform_machine_check()
Remove leftover cruft from ARCH=ppc.
There are no users of platform_machine_check() in ARCH=powerpc, and none
should be added (they should use ppc_md.machine_check_handler instead).
Signed-off-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/traps.c')
-rw-r--r-- | arch/powerpc/kernel/traps.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c index d8502e377518..ccfc99dad061 100644 --- a/arch/powerpc/kernel/traps.c +++ b/arch/powerpc/kernel/traps.c | |||
@@ -324,15 +324,6 @@ static inline int check_io_access(struct pt_regs *regs) | |||
324 | #define clear_single_step(regs) ((regs)->msr &= ~MSR_SE) | 324 | #define clear_single_step(regs) ((regs)->msr &= ~MSR_SE) |
325 | #endif | 325 | #endif |
326 | 326 | ||
327 | /* | ||
328 | * This is "fall-back" implementation for configurations | ||
329 | * which don't provide platform-specific machine check info | ||
330 | */ | ||
331 | void __attribute__ ((weak)) | ||
332 | platform_machine_check(struct pt_regs *regs) | ||
333 | { | ||
334 | } | ||
335 | |||
336 | void machine_check_exception(struct pt_regs *regs) | 327 | void machine_check_exception(struct pt_regs *regs) |
337 | { | 328 | { |
338 | int recover = 0; | 329 | int recover = 0; |
@@ -480,12 +471,6 @@ void machine_check_exception(struct pt_regs *regs) | |||
480 | } | 471 | } |
481 | #endif /* CONFIG_4xx */ | 472 | #endif /* CONFIG_4xx */ |
482 | 473 | ||
483 | /* | ||
484 | * Optional platform-provided routine to print out | ||
485 | * additional info, e.g. bus error registers. | ||
486 | */ | ||
487 | platform_machine_check(regs); | ||
488 | |||
489 | if (debugger_fault_handler(regs)) | 474 | if (debugger_fault_handler(regs)) |
490 | return; | 475 | return; |
491 | die("Machine check", regs, SIGBUS); | 476 | die("Machine check", regs, SIGBUS); |