diff options
Diffstat (limited to 'common/image.c')
| -rw-r--r-- | common/image.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/image.c b/common/image.c index 3a2f25e5a..f59904d3a 100644 --- a/common/image.c +++ b/common/image.c @@ -1252,7 +1252,7 @@ int boot_relocate_fdt (struct lmb *lmb, ulong bootmap_base,  		*of_size = of_len;  	} else {  		*of_flat_tree = fdt_blob; -		of_len = (CONFIG_SYS_BOOTMAPSZ + bootmap_base) - (ulong)fdt_blob; +		of_len = *of_size + CONFIG_SYS_FDT_PAD;  		lmb_reserve(lmb, (ulong)fdt_blob, of_len);  		fdt_set_totalsize(*of_flat_tree, of_len); |