Hi Heinrich,

On Sun, 30 Jul 2023 at 08:29, Heinrich Schuchardt
<[email protected]> wrote:
>
> uclass_get_device_by_name() is meant to return 0 or a negative error code.
> simple_itoa() cannot handle negative numbers.
>
> This leads to output like:
>
>     => bootdev list -p
>
>     Seq  Probed  Status  Uclass    Name
>     ---  ------  ------  --------  ------------------
>       c   [   ]  18446744073709551614  spi_flash [email protected]
>
> Convert the status to a positive number. Now we get
>
>     Seq  Probed  Status  Uclass    Name
>     ---  ------  ------  --------  ------------------
>       c   [   ]       2  spi_flash [email protected]
>
> Signed-off-by: Heinrich Schuchardt <[email protected]>
> ---
>  boot/bootdev-uclass.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
Applied to u-boot-dm, thanks!

Reply via email to