summaryrefslogtreecommitdiffstats
path: root/include/asm-arm/arch-shark/system.h
blob: b0d34e811fa9fb6b20a637ee2559ec4033a3c7aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * linux/include/asm-arm/arch-ebsa110/system.h
 *
 * Copyright (c) 1996-1998 Russell King.
 */
#ifndef __ASM_ARCH_SYSTEM_H
#define __ASM_ARCH_SYSTEM_H

extern __inline__ void arch_reset(char mode)
{
	/*
	 * loop endlessly
	 */
	cli();
}

#define arch_power_off()   do { } while (0)
#define arch_do_idle() do {} while (0)
/*cpu_do_idle()*/

#endif