1 /*
2  * Copied from arch/arm/mach-sa1100/include/mach/system.h
3  * Copyright (c) 1999 Nicolas Pitre <nico@fluxnic.net>
4  */
5 #ifndef __ASM_ARCH_SYSTEM_H
6 #define __ASM_ARCH_SYSTEM_H
7 
8 #include <asm/proc-fns.h>
9 
arch_idle(void)10 static inline void arch_idle(void)
11 {
12 	cpu_do_idle();
13 }
14 
15 extern void (*arch_reset)(char, const char *);
16 
17 #endif
18