mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
SPL ext: cosmetic: correct error message in spl_load_image_ext()
Correct the error message in spl_load_image_ext() when image parsing fails. Instead of "ext4fs_read failed" print "failed to parse image header". Signed-off-by: Petr Kulhavy <brain@jikos.cz> CC: Guillaume GARDET <guillaume.gardet@free.fr> CC: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
7a77e909a2
commit
9ab165d8b0
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ int spl_load_image_ext(struct blk_desc *block_dev,
|
|||
|
||||
err = spl_parse_image_header(header);
|
||||
if (err < 0) {
|
||||
puts("spl: ext4fs_read failed\n");
|
||||
puts("spl: ext: failed to parse image header\n");
|
||||
goto end;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue