public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] Fix for incorrect conversion hex string to number (FMAN firmware address).
@ 2013-06-19  7:48 Nikolay Puzanov
  2013-08-09  0:30 ` [U-Boot] " York Sun
  0 siblings, 1 reply; 3+ messages in thread
From: Nikolay Puzanov @ 2013-06-19  7:48 UTC (permalink / raw)
  To: u-boot

---
 arch/powerpc/cpu/mpc85xx/fdt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/cpu/mpc85xx/fdt.c b/arch/powerpc/cpu/mpc85xx/fdt.c
index 24eb978..ece1336 100644
--- a/arch/powerpc/cpu/mpc85xx/fdt.c
+++ b/arch/powerpc/cpu/mpc85xx/fdt.c
@@ -492,7 +492,7 @@ void fdt_fixup_fman_firmware(void *blob)
  if (!p)
  return;

- fmanfw = (struct qe_firmware *) simple_strtoul(p, NULL, 0);
+ fmanfw = (struct qe_firmware *) simple_strtoul(p, NULL, 16);
  if (!fmanfw)
  return;

--
1.8.1.2

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

end of thread, other threads:[~2013-08-20 19:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-19  7:48 [U-Boot] [PATCH] Fix for incorrect conversion hex string to number (FMAN firmware address) Nikolay Puzanov
2013-08-09  0:30 ` [U-Boot] " York Sun
2013-08-20 19:46   ` York Sun

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