diff options
Diffstat (limited to 'common/image-fdt.c')
| -rw-r--r-- | common/image-fdt.c | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/common/image-fdt.c b/common/image-fdt.c index 4247dcee0c4..48388488d98 100644 --- a/common/image-fdt.c +++ b/common/image-fdt.c @@ -17,6 +17,7 @@  #include <linux/libfdt.h>  #include <mapmem.h>  #include <asm/io.h> +#include <tee/optee.h>  #ifndef CONFIG_SYS_FDT_PAD  #define CONFIG_SYS_FDT_PAD 0x3000 @@ -561,6 +562,13 @@ int image_setup_libfdt(bootm_headers_t *images, void *blob,  		}  	} +	fdt_ret = optee_copy_fdt_nodes(gd->fdt_blob, blob); +	if (fdt_ret) { +		printf("ERROR: transfer of optee nodes to new fdt failed: %s\n", +		       fdt_strerror(fdt_ret)); +		goto err; +	} +  	/* Delete the old LMB reservation */  	if (lmb)  		lmb_free(lmb, (phys_addr_t)(u32)(uintptr_t)blob, | 
