summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2020-11-11 21:43:40 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2020-11-18 14:17:28 +0100
commitf46a9075e794d4592f63feadbad62a7a0969d0d4 (patch)
tree9b287c1cbb1506246b2de9a758b1033f550b05aa
parente1f040ee78a8f1f96f622fae85d3a50dd9f21984 (diff)
imx: romapi: fix spurious ampersand in address print
Fix spurious ampersand in address print e.g. Find FIT header 0x&480331a0, size 855 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
-rw-r--r--arch/arm/mach-imx/spl_imx_romapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/spl_imx_romapi.c b/arch/arm/mach-imx/spl_imx_romapi.c
index 7e6a05a6f3..0a4f72534b 100644
--- a/arch/arm/mach-imx/spl_imx_romapi.c
+++ b/arch/arm/mach-imx/spl_imx_romapi.c
@@ -226,7 +226,7 @@ static int spl_romapi_load_image_stream(struct spl_image_info *spl_image,
}
imagesize = fit_get_size(pfit);
- printf("Find FIT header 0x&%p, size %d\n", pfit, imagesize);
+ printf("Find FIT header 0x%p, size %d\n", pfit, imagesize);
if (p - pfit < imagesize) {
imagesize -= p - pfit;