12 lines
175 B
C
12 lines
175 B
C
|
#ifndef __ASM_ARCH_SYSTEM_H
|
||
|
#define __ASM_ARCH_SYSTEM_H
|
||
|
|
||
|
#include <asm/system_misc.h>
|
||
|
|
||
|
static inline void arch_reset(char mode, const char *cmd)
|
||
|
{
|
||
|
soft_restart(0);
|
||
|
}
|
||
|
|
||
|
#endif
|