diff options
author | Wu Zhangjin <wuzj@lemote.com> | 2009-07-02 11:20:56 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-09-17 14:07:45 -0400 |
commit | 8f0de87fa97667fa05c7bc938396ec759f021a21 (patch) | |
tree | 6638f3494830b150ad928da7987c426653e7a91b /arch | |
parent | f6a2740d0c1b3fd0d3cc8ec17e232f82f2d8b14c (diff) |
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/lemote/lm2e/reset.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/mips/lemote/lm2e/reset.c b/arch/mips/lemote/lm2e/reset.c index 2e64bf6929e7..a6499a200788 100644 --- a/arch/mips/lemote/lm2e/reset.c +++ b/arch/mips/lemote/lm2e/reset.c | |||
@@ -29,16 +29,11 @@ static void loongson2e_halt(void) | |||
29 | while (1) ; | 29 | while (1) ; |
30 | } | 30 | } |
31 | 31 | ||
32 | static void loongson2e_power_off(void) | ||
33 | { | ||
34 | loongson2e_halt(); | ||
35 | } | ||
36 | |||
37 | static int __init mips_reboot_setup(void) | 32 | static int __init mips_reboot_setup(void) |
38 | { | 33 | { |
39 | _machine_restart = loongson2e_restart; | 34 | _machine_restart = loongson2e_restart; |
40 | _machine_halt = loongson2e_halt; | 35 | _machine_halt = loongson2e_halt; |
41 | pm_power_off = loongson2e_power_off; | 36 | pm_power_off = loongson2e_halt; |
42 | 37 | ||
43 | return 0; | 38 | return 0; |
44 | } | 39 | } |