| 114 | #define rt_ofw_data(np) ((struct rt_ofw_node *)np)->rt_data |
| 115 | |
| 116 | rt_inline rt_bool_t rt_ofw_node_test_flag(const struct rt_ofw_node *np, int flag) |
| 117 | { |
| 118 | return rt_bitmap_test_bit((rt_bitmap_t *)&np->flags, flag); |
| 119 | } |
| 120 | |
| 121 | rt_inline void rt_ofw_node_set_flag(struct rt_ofw_node *np, int flag) |
| 122 | { |
no test coverage detected