public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v1] imx: romapi: fix spurious ampersand in address print
@ 2022-07-29 10:10 sbabic
  0 siblings, 0 replies; 3+ messages in thread
From: sbabic @ 2022-07-29 10:10 UTC (permalink / raw)
  To: Francesco Dolcini, u-boot

> From: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> Fix spurious ampersand in address print e.g.
> 	Find img info 0x&480331a0, size 855
> Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
> Reviewed-by: Michael Trimarchi <michael@amarulasolutions.com>"
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 3+ messages in thread
* [PATCH v1] imx: romapi: fix spurious ampersand in address print
@ 2022-07-20  7:27 Francesco Dolcini
  2022-07-20  7:32 ` Michael Nazzareno Trimarchi
  0 siblings, 1 reply; 3+ messages in thread
From: Francesco Dolcini @ 2022-07-20  7:27 UTC (permalink / raw)
  To: Stefano Babic, Fabio Estevam, NXP i.MX U-Boot Team
  Cc: Marcel Ziswiler, u-boot, Francesco Dolcini

From: Marcel Ziswiler <marcel.ziswiler@toradex.com>

Fix spurious ampersand in address print e.g.

	Find img info 0x&480331a0, size 855

Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
---
 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 c47f5a6bdb44..2996d2761690 100644
--- a/arch/arm/mach-imx/spl_imx_romapi.c
+++ b/arch/arm/mach-imx/spl_imx_romapi.c
@@ -306,7 +306,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;
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-07-29 10:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-29 10:10 [PATCH v1] imx: romapi: fix spurious ampersand in address print sbabic
  -- strict thread matches above, loose matches on Subject: below --
2022-07-20  7:27 Francesco Dolcini
2022-07-20  7:32 ` Michael Nazzareno Trimarchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox