| 375 | } |
| 376 | |
| 377 | int fdt_add_subnode(void *fdt, int parentoffset, const char *name) |
| 378 | { |
| 379 | return fdt_add_subnode_namelen(fdt, parentoffset, name, strlen(name)); |
| 380 | } |
| 381 | |
| 382 | int fdt_del_node(void *fdt, int nodeoffset) |
| 383 | { |
no test coverage detected