blob: 956ac18ddbf9c58931503e9d0f5410179d3c81cd [file] [log] [blame]
Magnus Dammc793c1b2010-02-05 11:14:49 +00001#ifndef __ASM_ARCH_SYSTEM_H
2#define __ASM_ARCH_SYSTEM_H
3
4static inline void arch_idle(void)
5{
6 cpu_do_idle();
7}
8
9static inline void arch_reset(char mode, const char *cmd)
10{
Russell Kinge879c862011-11-01 13:16:26 +000011 soft_restart(0);
Magnus Dammc793c1b2010-02-05 11:14:49 +000012}
13
14#endif