diff options
Diffstat (limited to 'cmd/boot.c')
-rw-r--r-- | cmd/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/boot.c b/cmd/boot.c index b84c0ed89e..fab294e622 100644 --- a/cmd/boot.c +++ b/cmd/boot.c @@ -29,7 +29,7 @@ static int do_go(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) if (argc < 2) return CMD_RET_USAGE; - addr = simple_strtoul(argv[1], NULL, 16); + addr = hextoul(argv[1], NULL); printf ("## Starting application at 0x%08lX ...\n", addr); |