Lines Matching defs:parent
109 static int __init fdt_translate_one(const void *blob, int parent,
119 ranges = fdt_getprop(blob, parent, rprop, &rlen);
146 of_dump_addr("parent translation for:", addr, pna);
149 /* Translate it into parent bus space */
165 int parent, len;
182 /* Get parent & match bus type */
183 parent = fdt_parent_offset(blob, node_offset);
184 if (parent < 0)
189 bus->count_cells(blob, parent, &na, &ns);
198 na, ns, fdt_get_name(blob, parent, NULL));
203 /* Switch to parent bus */
204 node_offset = parent;
205 parent = fdt_parent_offset(blob, node_offset);
208 if (parent < 0) {
214 /* Get new parent bus and counts */
216 pbus->count_cells(blob, parent, &pna, &pns);
223 pr_debug("parent bus (na=%d, ns=%d) on %s\n",
224 pna, pns, fdt_get_name(blob, parent, NULL));