mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
global: Convert simple_strtoul() with hex to hextoul()
It is a pain to have to specify the value 16 in each call. Add a new hextoul() function and update the code to use it. Add a proper comment to simple_strtoul() while we are here. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
031725f8cd
commit
7e5f460ec4
183 changed files with 692 additions and 659 deletions
|
@ -58,7 +58,7 @@ void write_to_mem(char *varname, u8 *result, ulong len)
|
|||
ulong addr;
|
||||
u8 *buf;
|
||||
|
||||
addr = simple_strtoul(varname, NULL, 16);
|
||||
addr = hextoul(varname, NULL);
|
||||
buf = map_sysmem(addr, len);
|
||||
memcpy(buf, result, len);
|
||||
unmap_sysmem(buf);
|
||||
|
@ -95,12 +95,12 @@ static int do_binop(struct cmd_tbl *cmdtp, int flag, int argc,
|
|||
src2 = malloc(len);
|
||||
|
||||
if (*src1arg == '*')
|
||||
read_from_mem(simple_strtoul(src1arg + 1, NULL, 16), src1, len);
|
||||
read_from_mem(hextoul(src1arg + 1, NULL), src1, len);
|
||||
else
|
||||
read_from_env_var(src1arg, src1);
|
||||
|
||||
if (*src2arg == '*')
|
||||
read_from_mem(simple_strtoul(src2arg + 1, NULL, 16), src2, len);
|
||||
read_from_mem(hextoul(src2arg + 1, NULL), src2, len);
|
||||
else
|
||||
read_from_env_var(src2arg, src2);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue