]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
fdt_support: fix an endian bug of fdt_initrd()
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Fri, 18 Apr 2014 08:41:04 +0000 (17:41 +0900)
committerTom Rini <trini@ti.com>
Thu, 19 Jun 2014 15:18:51 +0000 (11:18 -0400)
commitf18295d3837c282f10167502e25a964abb04acf7
tree3515b13fbbea88e4d0cbccf452caca022af588c3
parent739a01ed8e02c3b79a0f059d34b749bfab1a30df
fdt_support: fix an endian bug of fdt_initrd()

Data written to DTB must be converted to big endian order.
It is usually done by using cpu_to_fdt32(), cpu_to_fdt64(), etc.

fdt_initrd() invoked write_cell(), which always swaps byte order.
It means the function only worked on little endian architectures.
(On big endian architectures, the byte order should be kept as it is)

This commit uses cpu_to_fdt32() and cpu_to_fdt64()
and deletes write_cell().

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
common/fdt_support.c