diff options
Diffstat (limited to 'cmd/bootz.c')
-rw-r--r-- | cmd/bootz.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/cmd/bootz.c b/cmd/bootz.c index f14a5fefbfc..bc15fd8ec47 100644 --- a/cmd/bootz.c +++ b/cmd/bootz.c @@ -10,6 +10,7 @@ #include <image.h> #include <irq_func.h> #include <lmb.h> +#include <log.h> #include <linux/compiler.h> int __weak bootz_setup(ulong image, ulong *start, ulong *end) @@ -23,8 +24,8 @@ int __weak bootz_setup(ulong image, ulong *start, ulong *end) /* * zImage booting support */ -static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc, - char * const argv[], bootm_headers_t *images) +static int bootz_start(struct cmd_tbl *cmdtp, int flag, int argc, + char *const argv[], bootm_headers_t *images) { int ret; ulong zi_start, zi_end; @@ -59,7 +60,7 @@ static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc, return 0; } -int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) +int do_bootz(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { int ret; |