From: Marcel Ziswiler Date: Wed, 20 Jul 2022 07:27:55 +0000 (+0200) Subject: imx: romapi: fix spurious ampersand in address print X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=a8e518b80a311860f3b5b1730469ee843da7d72e;p=u-boot.git imx: romapi: fix spurious ampersand in address print Fix spurious ampersand in address print e.g. Find img info 0x&480331a0, size 855 Signed-off-by: Marcel Ziswiler Signed-off-by: Francesco Dolcini Reviewed-by: Michael Trimarchi " --- diff --git a/arch/arm/mach-imx/spl_imx_romapi.c b/arch/arm/mach-imx/spl_imx_romapi.c index cc3c1251dc..07bf07beee 100644 --- a/arch/arm/mach-imx/spl_imx_romapi.c +++ b/arch/arm/mach-imx/spl_imx_romapi.c @@ -288,7 +288,7 @@ static int spl_romapi_load_image_stream(struct spl_image_info *spl_image, } imagesize = img_info_size(phdr); - printf("Find img info 0x&%p, size %d\n", phdr, imagesize); + printf("Find img info 0x%p, size %d\n", phdr, imagesize); if (p - phdr < imagesize) { imagesize -= p - phdr;