浏览代码

[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>
Olof Johansson 17 年之前
父节点
当前提交
01f1c735f5
共有 1 个文件被更改,包括 0 次插入15 次删除
  1. 0 15
      arch/powerpc/kernel/traps.c

+ 0 - 15
arch/powerpc/kernel/traps.c

@@ -324,15 +324,6 @@ static inline int check_io_access(struct pt_regs *regs)
 #define clear_single_step(regs)	((regs)->msr &= ~MSR_SE)
 #define clear_single_step(regs)	((regs)->msr &= ~MSR_SE)
 #endif
 #endif
 
 
-/*
- * This is "fall-back" implementation for configurations
- * which don't provide platform-specific machine check info
- */
-void __attribute__ ((weak))
-platform_machine_check(struct pt_regs *regs)
-{
-}
-
 void machine_check_exception(struct pt_regs *regs)
 void machine_check_exception(struct pt_regs *regs)
 {
 {
 	int recover = 0;
 	int recover = 0;
@@ -480,12 +471,6 @@ void machine_check_exception(struct pt_regs *regs)
 	}
 	}
 #endif /* CONFIG_4xx */
 #endif /* CONFIG_4xx */
 
 
-	/*
-	 * Optional platform-provided routine to print out
-	 * additional info, e.g. bus error registers.
-	 */
-	platform_machine_check(regs);
-
 	if (debugger_fault_handler(regs))
 	if (debugger_fault_handler(regs))
 		return;
 		return;
 	die("Machine check", regs, SIGBUS);
 	die("Machine check", regs, SIGBUS);