summaryrefslogtreecommitdiffstats
path: root/arch/mips/dec/reset.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/dec/reset.c')
-rw-r--r--arch/mips/dec/reset.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/arch/mips/dec/reset.c b/arch/mips/dec/reset.c
index 644935747..e4d07608f 100644
--- a/arch/mips/dec/reset.c
+++ b/arch/mips/dec/reset.c
@@ -1,22 +1,25 @@
-
-
/*
- * linux/arch/mips/dec/reset.c
+ * $Id: $
*
* Reset a DECstation machine.
*
- * $Id: reset.c,v 1.3 1998/03/04 08:29:10 ralf Exp $
*/
+void (*back_to_prom)(void) = (void (*)(void))0xBFC00000;
+
void dec_machine_restart(char *command)
{
+ back_to_prom();
}
void dec_machine_halt(void)
{
+ back_to_prom();
}
void dec_machine_power_off(void)
{
/* DECstations don't have a software power switch */
+ back_to_prom();
}
+