| 386 | } |
| 387 | |
| 388 | int fdt_add_subnode(void *fdt, int parentoffset, const char *name) |
| 389 | { |
| 390 | return fdt_add_subnode_namelen(fdt, parentoffset, name, strlen(name)); |
| 391 | } |
| 392 | |
| 393 | int fdt_del_node(void *fdt, int nodeoffset) |
| 394 | { |
no test coverage detected