When imx6_esdhc_start_image fails print an error, otherwise print a success message. Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> --- arch/arm/mach-imx/xload-esdhc.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-imx/xload-esdhc.c b/arch/arm/mach-imx/xload-esdhc.c index c150adf..0ff58c8 100644 --- a/arch/arm/mach-imx/xload-esdhc.c +++ b/arch/arm/mach-imx/xload-esdhc.c @@ -276,8 +276,12 @@ int imx6_esdhc_start_image(int instance) pr_debug("Check ok, loading image\n"); ret = imx6_esdhc_load_image(instance, buf, len); - if (ret) + if (ret) { + pr_err("Loading image failed with %d\n", ret); return ret; + } + + pr_debug("Image loaded successfully\n"); bb = buf; -- 2.7.0 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox