[PATCH 11/12] bootstd: cros: Return negative error code
Simon Glass
sjg at chromium.org
Fri Feb 21 14:57:49 CET 2025
Hi Stephen!
On Thu, 20 Feb 2025 at 13:59, Stephen Boyd <swboyd at chromium.org> wrote:
>
> This should be negative EFAULT to indicate an error code.
>
> Signed-off-by: Stephen Boyd <swboyd at chromium.org>
> ---
> boot/bootmeth_cros.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/boot/bootmeth_cros.c b/boot/bootmeth_cros.c
> index c7b862e512a0..d4c4ed328bd0 100644
> --- a/boot/bootmeth_cros.c
> +++ b/boot/bootmeth_cros.c
> @@ -340,7 +340,7 @@ static int cros_read_kernel(struct bootflow *bflow)
>
> /* Check that the header is not smaller than permitted */
> if (priv->body_offset < PROBE_SIZE)
> - return log_msg_ret("san", EFAULT);
> + return log_msg_ret("san", -EFAULT);
>
> /* Read kernel body */
> num_blks = priv->body_size >> desc->log2blksz;
> --
> Sent by a computer, using git, on the internet
>
Reviewed-by: Simon Glass <sjg at chromium.org>
Regards,
Simon
More information about the U-Boot
mailing list