diff options
author | Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> | 2007-10-02 23:21:36 +0900 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 23:46:14 +0100 |
commit | f13558c2a4a7339192ff7148ee903340affdb790 (patch) | |
tree | ee42395f24b7e7ba723b6e132178ad7dde0cd25e /arch/mips/cobalt/setup.c | |
parent | 3282bd3cb0c7653e604c0d3666331281ae8f74c4 (diff) | |
download | kernel-crypto-f13558c2a4a7339192ff7148ee903340affdb790.tar.gz kernel-crypto-f13558c2a4a7339192ff7148ee903340affdb790.tar.xz kernel-crypto-f13558c2a4a7339192ff7148ee903340affdb790.zip |
[MIPS] Cobalt: Remove cobalt_machine_power_off()
It's same as cobalt_machine_halt().
Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/cobalt/setup.c')
-rw-r--r-- | arch/mips/cobalt/setup.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/mips/cobalt/setup.c b/arch/mips/cobalt/setup.c index 345e4ae998d..d11bb1bc7b6 100644 --- a/arch/mips/cobalt/setup.c +++ b/arch/mips/cobalt/setup.c @@ -25,7 +25,6 @@ extern void cobalt_machine_restart(char *command); extern void cobalt_machine_halt(void); -extern void cobalt_machine_power_off(void); const char *get_system_type(void) { @@ -96,7 +95,7 @@ void __init plat_mem_setup(void) _machine_restart = cobalt_machine_restart; _machine_halt = cobalt_machine_halt; - pm_power_off = cobalt_machine_power_off; + pm_power_off = cobalt_machine_halt; set_io_port_base(CKSEG1ADDR(GT_DEF_PCI0_IO_BASE)); |