Skip to content
Snippets Groups Projects
Commit d1263fce authored by John Rigby's avatar John Rigby Committed by Wolfgang Denk
Browse files

common/image.c remove extra calls to be32_to_cpu in boot_get_fdt


fdt_totalsize returns size in cpu endian so don't call be32_to_cpu
on the result.  This was harmless on big endian platforms but not
on little endian ARMs.

Signed-off-by: default avatarJohn Rigby <john.rigby@linaro.org>
parent 758b3997
No related branches found
No related tags found
No related merge requests found
...@@ -1561,7 +1561,7 @@ int boot_get_fdt (int flag, int argc, char * const argv[], bootm_headers_t *imag ...@@ -1561,7 +1561,7 @@ int boot_get_fdt (int flag, int argc, char * const argv[], bootm_headers_t *imag
goto error; goto error;
} }
if (be32_to_cpu (fdt_totalsize (fdt_blob)) != fdt_len) { if (fdt_totalsize(fdt_blob) != fdt_len) {
fdt_error ("fdt size != image size"); fdt_error ("fdt size != image size");
goto error; goto error;
} }
...@@ -1575,7 +1575,7 @@ int boot_get_fdt (int flag, int argc, char * const argv[], bootm_headers_t *imag ...@@ -1575,7 +1575,7 @@ int boot_get_fdt (int flag, int argc, char * const argv[], bootm_headers_t *imag
} }
*of_flat_tree = fdt_blob; *of_flat_tree = fdt_blob;
*of_size = be32_to_cpu (fdt_totalsize (fdt_blob)); *of_size = fdt_totalsize(fdt_blob);
debug (" of_flat_tree at 0x%08lx size 0x%08lx\n", debug (" of_flat_tree at 0x%08lx size 0x%08lx\n",
(ulong)*of_flat_tree, *of_size); (ulong)*of_flat_tree, *of_size);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment