浏览代码

MIPS: Loongson: pm: Remove redundant source code

The implmentation of loongson2e_power_off and loongson2e_halt is almostly
the same, just preserve one of them.

Signed-off-by: Wu Zhangjin <wuzj@lemote.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Wu Zhangjin 16 年之前
父节点
当前提交
8f0de87fa9
共有 1 个文件被更改,包括 1 次插入6 次删除
  1. 1 6
      arch/mips/lemote/lm2e/reset.c

+ 1 - 6
arch/mips/lemote/lm2e/reset.c

@@ -29,16 +29,11 @@ static void loongson2e_halt(void)
 	while (1) ;
 }
 
-static void loongson2e_power_off(void)
-{
-	loongson2e_halt();
-}
-
 static int __init mips_reboot_setup(void)
 {
 	_machine_restart = loongson2e_restart;
 	_machine_halt = loongson2e_halt;
-	pm_power_off = loongson2e_power_off;
+	pm_power_off = loongson2e_halt;
 
 	return 0;
 }