| 270 | } |
| 271 | |
| 272 | void rt_ofw_node_put(struct rt_ofw_node *np) |
| 273 | { |
| 274 | if (np) |
| 275 | { |
| 276 | LOG_D("%s put ref = %d", np->full_name, rt_ref_read(&np->ref)); |
| 277 | rt_ref_put(&np->ref, &ofw_node_release); |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | rt_bool_t rt_ofw_node_tag_equ(const struct rt_ofw_node *np, const char *tag) |
| 282 | { |
no test coverage detected