summaryrefslogtreecommitdiffstats
path: root/arch/mips/dec/reset.c
blob: 4d61d404856b4271cc1523efc9c43068bc8bfa0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 *  linux/arch/mips/dec/process.c
 *
 *  Reset a DECstation.
 */
#include <linux/kernel.h>
#include <asm/reboot.h>

void dec_machine_restart(char *command)
{
	printk("Implement dec_machine_restart().\n");
	printk("Press reset to continue.\n");
	while(1);
}

void dec_machine_halt(void)
{
	printk("Implement dec_machine_halt().\n");
	printk("Press reset to continue.\n");
	while(1);
}

void dec_machine_power_off(void)
{
	printk("Implement dec_machine_power_off().\n");
	printk("Press reset to continue.\n");
	while(1);
}