MIPS: Loongson: pm: Remove redundant source code
authorWu Zhangjin <wuzj@lemote.com>
Thu, 2 Jul 2009 15:20:56 +0000 (23:20 +0800)
committerRalf Baechle <ralf@linux-mips.org>
Thu, 17 Sep 2009 18:07:45 +0000 (20:07 +0200)
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>
arch/mips/lemote/lm2e/reset.c

index 2e64bf6..a6499a2 100644 (file)
@@ -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;
 }