Lines Matching defs:phandle
114 int fdt_find_max_phandle(const void *fdt, uint32_t *phandle)
136 if (phandle)
137 *phandle = max;
142 int fdt_generate_phandle(const void *fdt, uint32_t *phandle)
154 if (phandle)
155 *phandle = max + 1;
518 php = fdt_getprop(fdt, nodeoffset, "phandle", &len);
520 php = fdt_getprop(fdt, nodeoffset, "linux,phandle", &len);
710 int fdt_node_offset_by_phandle(const void *fdt, uint32_t phandle)
714 if ((phandle == 0) || (phandle == ~0U))
728 if (fdt_get_phandle(fdt, offset) == phandle)