[PATCH V2 10/30] imx: ele_ahab: use hextoul
Peng Fan (OSS)
peng.fan at oss.nxp.com
Thu Jun 15 12:09:07 CEST 2023
From: Peng Fan <peng.fan at nxp.com>
Use hextoul which looks a bit simpler.
Signed-off-by: Peng Fan <peng.fan at nxp.com>
---
arch/arm/mach-imx/ele_ahab.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-imx/ele_ahab.c b/arch/arm/mach-imx/ele_ahab.c
index 9bb37919638..5f23486304c 100644
--- a/arch/arm/mach-imx/ele_ahab.c
+++ b/arch/arm/mach-imx/ele_ahab.c
@@ -402,7 +402,7 @@ static int do_authenticate(struct cmd_tbl *cmdtp, int flag, int argc,
if (argc < 2)
return CMD_RET_USAGE;
- addr = simple_strtoul(argv[1], NULL, 16);
+ addr = hextoul(argv[1], NULL);
printf("Authenticate OS container at 0x%lx\n", addr);
--
2.40.0
More information about the U-Boot
mailing list