Lines Matching full:phandle
21 uint32_t phandle; in check_phandle() local
27 phandle = fdt_get_phandle(fdt, offset); in check_phandle()
28 if (phandle != checkhandle) in check_phandle()
30 path, phandle, checkhandle); in check_phandle()
35 uint32_t phandle; in check_phandle_unique() local
44 FAIL("error looking for phandle %#x", checkhandle); in check_phandle_unique()
47 phandle = fdt_get_phandle(fdt, offset); in check_phandle_unique()
49 if (phandle == checkhandle) in check_phandle_unique()
50 FAIL("generated phandle already exists"); in check_phandle_unique()
56 uint32_t max, phandle; in main() local
80 err = fdt_generate_phandle(fdt, &phandle); in main()
82 FAIL("failed to generate phandle: %d", err); in main()
84 check_phandle_unique(fdt, phandle); in main()