| 190 | } |
| 191 | |
| 192 | struct dtb_node *dtb_node_get_by_phandle(uint32_t phandle) |
| 193 | { |
| 194 | if (dtb_node_active()) |
| 195 | return dtb_node_find_node_by_phandle(phandle); |
| 196 | return NULL; |
| 197 | } |
| 198 | |
| 199 | int dtb_node_read_size(const struct dtb_node *node, const char *propname) |
| 200 | { |
no test coverage detected