blob: 76a687eeaa22d706ca6c3d08cba1ebf6c9721896 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __ASM_ARCH_SYSTEM_H
#define __ASM_ARCH_SYSTEM_H
static inline void arch_idle(void)
{
cpu_do_idle();
}
static inline void arch_reset(char mode, const char *cmd)
{
cpu_reset(0);
}
#endif
|