summaryrefslogtreecommitdiffstats
path: root/board/ids8247
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2007-11-26 10:41:40 -0600
committerGerald Van Baren <vanbaren@cideas.com>2007-12-07 20:51:24 -0500
commitd88e7ba0980773479e1a64badb293116071b7ef0 (patch)
treef41a30856f6a447561fd1a1b9b8dc91819a8ab9b /board/ids8247
parent28f384b171bbf1fb2dafb1046e6d259a6b2f8714 (diff)
downloadtalos-obmc-uboot-d88e7ba0980773479e1a64badb293116071b7ef0.tar.gz
talos-obmc-uboot-d88e7ba0980773479e1a64badb293116071b7ef0.zip
Fix build breakage due to libfdt import
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@kernel.crashing.org>
Diffstat (limited to 'board/ids8247')
-rw-r--r--board/ids8247/ids8247.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ids8247/ids8247.c b/board/ids8247/ids8247.c
index b05424d32b..d1d8c56ac5 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));
OpenPOWER on IntegriCloud