From f46a9075e794d4592f63feadbad62a7a0969d0d4 Mon Sep 17 00:00:00 2001 From: Marcel Ziswiler Date: Wed, 11 Nov 2020 21:43:40 +0100 Subject: 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 --- arch/arm/mach-imx/spl_imx_romapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3