Lines Matching refs:node_off
902 static rt_err_t fdt_unflatten_props(struct rt_ofw_node *np, int node_off) in fdt_unflatten_props() argument
906 int prop_off = fdt_first_property_offset(_fdt, node_off); in fdt_unflatten_props()
945 static rt_err_t fdt_unflatten_single(struct rt_ofw_node *np, int node_off) in fdt_unflatten_single() argument
959 np->full_name = fdt_get_name(_fdt, node_off, RT_NULL); in fdt_unflatten_single()
960 np->phandle = fdt_get_phandle(_fdt, node_off); in fdt_unflatten_single()
975 if ((err = fdt_unflatten_props(np, node_off))) in fdt_unflatten_single()
988 rt_ofw_data(np) = (void *)(rt_ubase_t)node_off; in fdt_unflatten_single()
991 node_off = fdt_first_subnode(_fdt, node_off); in fdt_unflatten_single()
993 if (node_off >= 0) in fdt_unflatten_single()
1009 node_off = (long)rt_ofw_data(np); in fdt_unflatten_single()
1013 node_off = fdt_next_subnode(_fdt, node_off); in fdt_unflatten_single()
1015 if (node_off < 0) in fdt_unflatten_single()