diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2007-10-24 11:04:22 -0500 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2007-11-21 14:04:05 -0600 | 
| commit | 8d04f02f6224e6983f4812ea4da704950ec8539c (patch) | |
| tree | 0e3193813d29fe82231ad618075efe257b2925f1 /cpu/mpc83xx/cpu.c | |
| parent | e93becf80d732b64aef81b23e8b6ece02c40533d (diff) | |
| download | olio-uboot-2014.01-8d04f02f6224e6983f4812ea4da704950ec8539c.tar.xz olio-uboot-2014.01-8d04f02f6224e6983f4812ea4da704950ec8539c.zip | |
Update libfdt from device tree compiler (dtc)
Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
the device tree compiler (dtc) project.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc83xx/cpu.c')
| -rw-r--r-- | cpu/mpc83xx/cpu.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/cpu/mpc83xx/cpu.c b/cpu/mpc83xx/cpu.c index e634f0a25..b2c35d300 100644 --- a/cpu/mpc83xx/cpu.c +++ b/cpu/mpc83xx/cpu.c @@ -529,7 +529,7 @@ ft_cpu_setup(void *blob, bd_t *bd)  	int tmp[2];  	for (j = 0; j < (sizeof(fixup_props) / sizeof(fixup_props[0])); j++) { -		nodeoffset = fdt_find_node_by_path(blob, fixup_props[j].node); +		nodeoffset = fdt_path_offset(blob, fixup_props[j].node);  		if (nodeoffset >= 0) {  			err = fixup_props[j].set_fn(blob, nodeoffset,  						    fixup_props[j].prop, bd); @@ -544,7 +544,7 @@ ft_cpu_setup(void *blob, bd_t *bd)  	}  	/* update, or add and update /memory node */ -	nodeoffset = fdt_find_node_by_path(blob, "/memory"); +	nodeoffset = fdt_path_offset(blob, "/memory");  	if (nodeoffset < 0) {  		nodeoffset = fdt_add_subnode(blob, 0, "memory");  		if (nodeoffset < 0) |