[U-Boot] [PATCH] 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 --- common/spl/spl_ext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/spl/spl_ext.c b/common/spl/spl_ext.c index ade5496..074b31e 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: failed to parse image header\n"); goto end; }

Le 14/06/2016 11:44, Petr Kulhavy a écrit :
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
Acked-by: Guillaume GARDET guillaume.gardet@free.fr
common/spl/spl_ext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/spl/spl_ext.c b/common/spl/spl_ext.c index ade5496..074b31e 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");
goto end; }puts("spl: failed to parse image header\n");

On Tue, Jun 14, 2016 at 11:44:56AM +0200, Petr Kulhavy wrote:
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
common/spl/spl_ext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/spl/spl_ext.c b/common/spl/spl_ext.c index ade5496..074b31e 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: failed to parse image header\n");
Can you please make this: "spl: ext: failed to parse image header" so that when encountered someone knows it's in the ext path? Thanks!
participants (3)
-
Guillaume Gardet
-
Petr Kulhavy
-
Tom Rini