| 115 | return next; |
| 116 | } |
| 117 | static void ofw_prop_destroy(struct rt_ofw_prop *prop) |
| 118 | { |
| 119 | struct rt_ofw_prop *next; |
| 120 | |
| 121 | while (prop) |
| 122 | { |
| 123 | next = prop->next; |
| 124 | |
| 125 | rt_free(prop); |
| 126 | |
| 127 | prop = next; |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | static struct rt_ofw_node *ofw_get_next_node(struct rt_ofw_node *prev) |
| 132 | { |
no test coverage detected