Lines Matching defs:child
238 np->sibling = dad->child;
239 dad->child = np;
256 struct device_node *child, *next;
259 child = parent->child;
260 while (child) {
261 reverse_nodes(child);
263 child = child->sibling;
266 /* Reverse the nodes in the child list */
267 child = parent->child;
268 parent->child = NULL;
269 while (child) {
270 next = child->sibling;
272 child->sibling = parent->child;
273 parent->child = child;
274 child = next;
341 * Reverse the child list. Some drivers assumes node order matches .dts