diff options
Diffstat (limited to 'arch/sandbox/cpu/cpu.c')
-rw-r--r-- | arch/sandbox/cpu/cpu.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/sandbox/cpu/cpu.c b/arch/sandbox/cpu/cpu.c index 554cae85ef..c7bf8a9155 100644 --- a/arch/sandbox/cpu/cpu.c +++ b/arch/sandbox/cpu/cpu.c @@ -20,15 +20,14 @@ */ #include <common.h> +#include <os.h> DECLARE_GLOBAL_DATA_PTR; int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { - /* - * This is considered normal termination for now. We wil call os_exit() - * when available. - */ + /* This is considered normal termination for now */ + os_exit(0); return 0; } |