[U-Boot-Users] [FDT][PATCH 1/4] Fix build breakage due to libfdt import

Kumar Gala galak at kernel.crashing.org
Wed Nov 28 00:44:03 CET 2007


The IDS8247 got lost in the update and need an API update
do to rename of functions in libfdt.

Signed-off-by: Kumar Gala <galak at kernel.crashing.org>
---

in git.kernel.org:/pub/scm/boot/u-boot/galak/u-boot.git libfdt_testing

 board/ids8247/ids8247.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/board/ids8247/ids8247.c b/board/ids8247/ids8247.c
index b05424d..d1d8c56 100644
--- a/board/ids8247/ids8247.c
+++ b/board/ids8247/ids8247.c
@@ -335,7 +335,7 @@ void ft_blob_update(void *blob, bd_t *bd)
 	memory_data[0] = cpu_to_be32(bd->bi_memstart);
 	memory_data[1] = cpu_to_be32(bd->bi_memsize);

-	nodeoffset = fdt_find_node_by_path (blob, "/memory");
+	nodeoffset = fdt_path_offset (blob, "/memory");
 	if (nodeoffset >= 0) {
 		ret = fdt_setprop(blob, nodeoffset, "reg", memory_data,
 					sizeof(memory_data));
-- 
1.5.3.4





More information about the U-Boot mailing list