Searched refs:root_fdt (Results 1 – 1 of 1) sorted by relevance
| /linux/kernel/liveupdate/ |
| H A D | kexec_handover.c | 713 void *root_fdt = kho_out.fdt; in kho_add_subtree() local 719 fdt_err = fdt_open_into(root_fdt, root_fdt, PAGE_SIZE); in kho_add_subtree() 723 off = fdt_add_subnode(root_fdt, 0, name); in kho_add_subtree() 730 err = fdt_setprop(root_fdt, off, PROP_SUB_FDT, &phys, sizeof(phys)); in kho_add_subtree() 737 fdt_pack(root_fdt); in kho_add_subtree() 746 void *root_fdt = kho_out.fdt; in kho_remove_subtree() local 752 err = fdt_open_into(root_fdt, root_fdt, PAGE_SIZE); in kho_remove_subtree() 756 for (off = fdt_first_subnode(root_fdt, 0); off >= 0; in kho_remove_subtree() 757 off = fdt_next_subnode(root_fdt, off)) { in kho_remove_subtree() 761 val = fdt_getprop(root_fdt, off, PROP_SUB_FDT, &len); in kho_remove_subtree() [all …]
|