| 249 | } |
| 250 | |
| 251 | struct rt_ofw_node *rt_ofw_node_get(struct rt_ofw_node *np) |
| 252 | { |
| 253 | if (np) |
| 254 | { |
| 255 | LOG_D("%s get ref = %d", np->full_name, rt_ref_read(&np->ref)); |
| 256 | rt_ref_get(&np->ref); |
| 257 | } |
| 258 | |
| 259 | return np; |
| 260 | } |
| 261 | |
| 262 | static void ofw_node_release(struct rt_ref *r) |
| 263 | { |
no test coverage detected