Searched refs:fdt_copy (Results 1 - 3 of 3) sorted by relevance

/u-boot/board/siemens/iot2050/
H A Dboard.c449 void *fdt_copy = NULL; local
462 fdt_copy = malloc(fdt_size);
463 if (!fdt_copy)
466 memcpy(fdt_copy, blob, fdt_size);
474 err = fdt_overlay_apply_verbose(fdt_copy, overlay_copy);
478 memcpy(blob, fdt_copy, fdt_size);
481 free(fdt_copy);
/u-boot/include/test/
H A Dtest.h25 * @fdt_copy: Copy of the device tree
46 void *fdt_copy; member in struct:unit_test_state
/u-boot/test/
H A Dtest-main.c119 memcpy((void *)gd->fdt_blob, uts->fdt_copy, uts->fdt_size);
626 uts.fdt_copy = os_malloc(uts.fdt_size);
627 if (!uts.fdt_copy) {
631 memcpy(uts.fdt_copy, gd->fdt_blob, uts.fdt_size);
641 os_free(uts.fdt_copy);

Completed in 92 milliseconds