| 171 | } |
| 172 | |
| 173 | struct dtb_node *dtb_node_next_subnode(const struct dtb_node *node) |
| 174 | { |
| 175 | RT_ASSERT(dtb_node_valid(node)); |
| 176 | |
| 177 | return node->sibling; |
| 178 | } |
| 179 | |
| 180 | const char *dtb_node_get_name(const struct dtb_node *node) |
| 181 | { |
nothing calls this directly
no test coverage detected