[PATCH v3 13/19] spl: Drop a duplicate variable in boot_from_devices()
Simon Glass
sjg at chromium.org
Sat Dec 7 18:24:06 CET 2024
The variable 'ret' is defined twice, which is not intended. This may
have been a local merge error.
Signed-off-by: Simon Glass <sjg at chromium.org>
Fixes: 2eefeb6d893 ("spl: Report a loader failure")
---
(no changes since v1)
common/spl/spl.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/common/spl/spl.c b/common/spl/spl.c
index 702920bd2f7..ad31a2f8b6c 100644
--- a/common/spl/spl.c
+++ b/common/spl/spl.c
@@ -612,7 +612,6 @@ static int boot_from_devices(struct spl_image_info *spl_image,
for (i = 0; i < count && spl_boot_list[i] != BOOT_DEVICE_NONE; i++) {
struct spl_image_loader *loader;
int bootdev = spl_boot_list[i];
- int ret;
if (CONFIG_IS_ENABLED(SHOW_ERRORS))
ret = -ENXIO;
--
2.34.1
More information about the U-Boot
mailing list