diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/device_tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/device_tree.h b/src/include/device_tree.h index ae30c59710..02fcaa7234 100644 --- a/src/include/device_tree.h +++ b/src/include/device_tree.h @@ -91,10 +91,10 @@ struct device_tree * which were consumed reading the requested value. */ -/* Read the property, if any, at offset offset. */ +/* Read the property at offset, if any exists. */ int fdt_next_property(const void *blob, uint32_t offset, struct fdt_property *prop); -/* Read the name of the node, if any, at offset offset. */ +/* Read the name of the node at offset, if any exists. */ int fdt_node_name(const void *blob, uint32_t offset, const char **name); void fdt_print_node(const void *blob, uint32_t offset); |