diff options
-rw-r--r-- | device_tree.c | 11 | ||||
-rw-r--r-- | device_tree.h | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/device_tree.c b/device_tree.c index 3a224d1e0f..23e89e3b90 100644 --- a/device_tree.c +++ b/device_tree.c @@ -107,3 +107,14 @@ int qemu_devtree_setprop_string(void *fdt, const char *node_path, return fdt_setprop_string(fdt, offset, property, string); } + +int qemu_devtree_nop_node(void *fdt, const char *node_path) +{ + int offset; + + offset = fdt_path_offset(fdt, node_path); + if (offset < 0) + return offset; + + return fdt_nop_node(fdt, offset); +} diff --git a/device_tree.h b/device_tree.h index cecd98f042..76fce5ffb2 100644 --- a/device_tree.h +++ b/device_tree.h @@ -22,5 +22,6 @@ int qemu_devtree_setprop_cell(void *fdt, const char *node_path, const char *property, uint32_t val); int qemu_devtree_setprop_string(void *fdt, const char *node_path, const char *property, const char *string); +int qemu_devtree_nop_node(void *fdt, const char *node_path); #endif /* __DEVICE_TREE_H__ */ |