]> Git Repo - u-boot.git/blobdiff - cmd/elf.c
global: Convert simple_strtoul() with hex to hextoul()
[u-boot.git] / cmd / elf.c
index d44b95d90339e7d9c6b54a16a557c50db36d2b15..d75b21461c2096f5b4deb1d9211d4c485947ed22 100644 (file)
--- a/cmd/elf.c
+++ b/cmd/elf.c
@@ -115,7 +115,7 @@ int do_bootvx(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
        if (argc < 2)
                addr = image_load_addr;
        else
-               addr = simple_strtoul(argv[1], NULL, 16);
+               addr = hextoul(argv[1], NULL);
 
 #if defined(CONFIG_CMD_NET)
        /*
@@ -200,7 +200,7 @@ int do_bootvx(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
        }
 
        if (!bootaddr)
-               bootaddr = simple_strtoul(tmp, NULL, 16);
+               bootaddr = hextoul(tmp, NULL);
 
        /*
         * Check to see if the bootline is defined in the 'bootargs' parameter.
This page took 0.030165 seconds and 4 git commands to generate.