diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2008-02-13 15:09:58 -0600 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-02-13 23:58:18 +0100 | 
| commit | d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d (patch) | |
| tree | 5261939c31d5e6114eb928a6667e25b68baddf00 | |
| parent | 10bbb38a402a2faf18858c451bcdc63d45888e6e (diff) | |
| download | olio-uboot-2014.01-d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d.tar.xz olio-uboot-2014.01-d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d.zip | |
Fix building of fdt_support.c if DEBUG set
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
| -rw-r--r-- | common/fdt_support.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/common/fdt_support.c b/common/fdt_support.c index 92f1c7f54..69eb66795 100644 --- a/common/fdt_support.c +++ b/common/fdt_support.c @@ -415,7 +415,7 @@ void do_fixup_by_path(void *fdt, const char *path, const char *prop,  {  #if defined(DEBUG)  	int i; -	debug("Updating property '%s/%s' = ", node, prop); +	debug("Updating property '%s/%s' = ", path, prop);  	for (i = 0; i < len; i++)  		debug(" %.2x", *(u8*)(val+i));  	debug("\n"); @@ -441,7 +441,7 @@ void do_fixup_by_prop(void *fdt,  	int off;  #if defined(DEBUG)  	int i; -	debug("Updating property '%s/%s' = ", node, prop); +	debug("Updating property '%s' = ", prop);  	for (i = 0; i < len; i++)  		debug(" %.2x", *(u8*)(val+i));  	debug("\n"); @@ -468,7 +468,7 @@ void do_fixup_by_compat(void *fdt, const char *compat,  	int off = -1;  #if defined(DEBUG)  	int i; -	debug("Updating property '%s/%s' = ", node, prop); +	debug("Updating property '%s' = ", prop);  	for (i = 0; i < len; i++)  		debug(" %.2x", *(u8*)(val+i));  	debug("\n"); |