1 /*
2  * linux/include/asm-arm/arch-tbox/system.h
3  *
4  * Copyright (c) 1996-1999 Russell King.
5  */
6 #ifndef __ASM_ARCH_SYSTEM_H
7 #define __ASM_ARCH_SYSTEM_H
8 
arch_idle(void)9 static inline void arch_idle(void)
10 {
11 	cpu_do_idle();
12 }
13 
14 #define arch_reset(mode)	do { } while (0)
15 
16 #endif
17