[PATCH 11/12] bootstd: cros: Return negative error code

Stephen Boyd swboyd at chromium.org
Thu Feb 20 21:58:53 CET 2025


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



More information about the U-Boot mailing list