summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorPetr Kulhavy <brain@jikos.cz>2016-06-18 12:21:17 +0200
committerTom Rini <trini@konsulko.com>2016-06-19 09:57:48 -0400
commit9ab165d8b05706284de0ee9bd402346c54ae6b15 (patch)
tree7c755defa804d901b3dff8c4fcb20f09e854e40f /common
parent7a77e909a22848f5d5820fae58c087b83e90bdbc (diff)
downloadtalos-obmc-uboot-9ab165d8b05706284de0ee9bd402346c54ae6b15.tar.gz
talos-obmc-uboot-9ab165d8b05706284de0ee9bd402346c54ae6b15.zip
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>
Diffstat (limited to 'common')
-rw-r--r--common/spl/spl_ext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl_ext.c b/common/spl/spl_ext.c
index 89ac4f4297..a85dc85ffe 100644
--- a/common/spl/spl_ext.c
+++ b/common/spl/spl_ext.c
@@ -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;
}
OpenPOWER on IntegriCloud