summaryrefslogtreecommitdiffstats
path: root/arch/mips/jazz/reset.c
blob: ccc7a7c8a6e0ecc254a6d164cadfd2747ddf8d99 (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
/*
 *  linux/arch/mips/jazz/process.c
 *
 *  Reset a Jazz machine.
 */
#include <asm/io.h>
#include <asm/system.h>
#include <asm/reboot.h>

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

void jazz_machine_halt(void)
{
}

void jazz_machine_power_off(void)
{
	/* Jazz machines don't have a software power switch */
}