| 394 | } |
| 395 | |
| 396 | struct dtb_node *dtb_node_get_parent(const struct dtb_node *node) |
| 397 | { |
| 398 | const struct dtb_node *dn; |
| 399 | |
| 400 | if (!node) |
| 401 | return NULL; |
| 402 | |
| 403 | dn = dtb_node_get(node->parent); |
| 404 | |
| 405 | return (struct dtb_node *)dn; |
| 406 | } |
| 407 | |
| 408 | struct dtb_node *dtb_node_find_node_by_phandle(phandle handle) |
| 409 | { |
no outgoing calls
no test coverage detected