[RFC PATCH v3 1/5] cmd: fuse: Remove custom string functions

Tom Rini trini at konsulko.com
Tue Mar 18 15:09:32 CET 2025


On Tue, Mar 18, 2025 at 04:20:43PM +0530, Harsha Vardhan V M wrote:

> Remove custom string functions and replace them with normal string
> functions. Remove the custom strtou32 and replace it with
> simple_strtoul.
> 
> Signed-off-by: Harsha Vardhan V M <h-vm at ti.com>
[snip]
> @@ -54,14 +43,18 @@ static int do_fuse(struct cmd_tbl *cmdtp, int flag, int argc,
>  	argc -= 2 + confirmed;
>  	argv += 2 + confirmed;
>  
> -	if (argc < 2 || strtou32(argv[0], 0, &bank) ||
> -			strtou32(argv[1], 0, &word))
> +	if (argc < 2)
>  		return CMD_RET_USAGE;
>  
> +	bank = (u32)simple_strtoul(argv[0], NULL, 0);

Do we really need these casts?

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20250318/0b19314c/attachment.sig>


More information about the U-Boot mailing list