diff options
Diffstat (limited to 'cmd/bootz.c')
-rw-r--r-- | cmd/bootz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bootz.c b/cmd/bootz.c index 7556cd2752..4f024bde5f 100644 --- a/cmd/bootz.c +++ b/cmd/bootz.c @@ -39,7 +39,7 @@ static int bootz_start(struct cmd_tbl *cmdtp, int flag, int argc, debug("* kernel: default image load address = 0x%08lx\n", image_load_addr); } else { - images->ep = simple_strtoul(argv[0], NULL, 16); + images->ep = hextoul(argv[0], NULL); debug("* kernel: cmdline image address = 0x%08lx\n", images->ep); } |