diff options
Diffstat (limited to 'lib_microblaze/bootm.c')
-rw-r--r-- | lib_microblaze/bootm.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/lib_microblaze/bootm.c b/lib_microblaze/bootm.c index baf6d77..5986a31 100644 --- a/lib_microblaze/bootm.c +++ b/lib_microblaze/bootm.c @@ -32,10 +32,7 @@ DECLARE_GLOBAL_DATA_PTR; -extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); - -void do_bootm_linux (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[], - bootm_headers_t *images) +int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images) { /* First parameter is mapped to $r5 for kernel boot args */ void (*theKernel) (char *); @@ -52,9 +49,6 @@ void do_bootm_linux (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[], theKernel (commandline); /* does not return */ - return; - error: - do_reset (cmdtp, flag, argc, argv); - return; + return 1; } |