Home | History | Annotate | Download | only in libfdt

Lines Matching full:phandle

98 		uint32_t phandle;
106 phandle = fdt_get_phandle(fdt, offset);
107 if (phandle == (uint32_t)-1)
110 if (phandle > max_phandle)
111 max_phandle = phandle;
362 php = fdt_getprop(fdt, nodeoffset, "phandle", &len);
364 php = fdt_getprop(fdt, nodeoffset, "linux,phandle", &len);
525 int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle)
529 if ((phandle == 0) || (phandle == -1))
543 if (fdt_get_phandle(fdt, offset) == phandle)