From 9ab165d8b05706284de0ee9bd402346c54ae6b15 Mon Sep 17 00:00:00 2001 From: Petr Kulhavy Date: Sat, 18 Jun 2016 12:21:17 +0200 Subject: 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 CC: Guillaume GARDET CC: Tom Rini --- common/spl/spl_ext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/spl') diff --git a/common/spl/spl_ext.c b/common/spl/spl_ext.c index 89ac4f4..a85dc85 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; } -- cgit v1.1