[PATCH 6/7] ARM: i.MX: xload-esdhc: Add debug messages
Sascha Hauer
s.hauer at pengutronix.de
Fri Apr 1 05:10:43 PDT 2016
When imx6_esdhc_start_image fails print an error, otherwise print a
success message.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
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
More information about the barebox
mailing list