| 300 | } |
| 301 | |
| 302 | struct dtb_node *dtb_node_get_chosen_node(const char *name) |
| 303 | { |
| 304 | const char *prop; |
| 305 | |
| 306 | prop = dtb_node_get_chosen_prop(name); |
| 307 | if (!prop) |
| 308 | return NULL; |
| 309 | |
| 310 | return dtb_node_path(prop); |
| 311 | } |
| 312 | |
| 313 | const void *dtb_node_get_property(const struct dtb_node *node, const char *propname, int *lenp) |
| 314 | { |
nothing calls this directly
no test coverage detected