Lines Matching defs:fdt
23 void *fdt;
28 fdt = load_blob_arg(argc, argv);
30 subnode1_offset = fdt_path_offset(fdt, "/subnode@1");
34 check_getprop_cell(fdt, subnode1_offset, "prop-int", TEST_VALUE_1);
36 subnode2_offset = fdt_path_offset(fdt, "/subnode@2");
40 check_getprop_cell(fdt, subnode2_offset, "prop-int", TEST_VALUE_2);
42 subsubnode2_offset = fdt_path_offset(fdt, "/subnode@2/subsubnode");
46 check_getprop_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2);
48 err = fdt_nop_node(fdt, subnode1_offset);
52 subnode1_offset = fdt_path_offset(fdt, "/subnode@1");
58 subnode2_offset = fdt_path_offset(fdt, "/subnode@2");
62 check_getprop_cell(fdt, subnode2_offset, "prop-int", TEST_VALUE_2);
64 subsubnode2_offset = fdt_path_offset(fdt, "/subnode@2/subsubnode");
68 check_getprop_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2);
70 err = fdt_nop_node(fdt, subnode2_offset);
74 subnode1_offset = fdt_path_offset(fdt, "/subnode@1");
80 subnode2_offset = fdt_path_offset(fdt, "/subnode@2");
86 subsubnode2_offset = fdt_path_offset(fdt, "/subnode@2/subsubnode");