X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=arch%2Fmips%2Fkernel%2Freset.c;h=621037db22904ed85f15ee0204007e6bade30e0d;hb=43bc926fffd92024b46cafaf7350d669ba9ca884;hp=7e0a9821931ad30d27c813db7d58a5f7778a7bab;hpb=5273a3df6485dc2ad6aa7ddd441b9a21970f003b;p=linux-2.6.git diff --git a/arch/mips/kernel/reset.c b/arch/mips/kernel/reset.c index 7e0a98219..621037db2 100644 --- a/arch/mips/kernel/reset.c +++ b/arch/mips/kernel/reset.c @@ -3,13 +3,15 @@ * License. See the file "COPYING" in the main directory of this archive * for more details. * - * Copyright (C) 2001 by Ralf Baechle + * Copyright (C) 2001, 06 by Ralf Baechle (ralf@linux-mips.org) * Copyright (C) 2001 MIPS Technologies, Inc. */ #include #include +#include #include #include + #include /* @@ -19,25 +21,22 @@ */ void (*_machine_restart)(char *command); void (*_machine_halt)(void); -void (*_machine_power_off)(void); +void (*pm_power_off)(void); void machine_restart(char *command) { - _machine_restart(command); + if (_machine_restart) + _machine_restart(command); } -EXPORT_SYMBOL(machine_restart); - void machine_halt(void) { - _machine_halt(); + if (_machine_halt) + _machine_halt(); } -EXPORT_SYMBOL(machine_halt); - void machine_power_off(void) { - _machine_power_off(); + if (pm_power_off) + pm_power_off(); } - -EXPORT_SYMBOL(machine_power_off);