Lines Matching refs:subsubnode2_offset
24 int subnode1_offset, subnode2_offset, subsubnode2_offset; in main() local
47 subsubnode2_offset = fdt_path_offset(fdt, "/subnode@2/subsubnode"); in main()
48 if (subsubnode2_offset < 0) in main()
50 fdt_strerror(subsubnode2_offset)); in main()
51 check_getprop_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2); in main()
69 subsubnode2_offset = fdt_path_offset(fdt, "/subnode@2/subsubnode"); in main()
70 if (subsubnode2_offset < 0) in main()
72 fdt_strerror(subsubnode2_offset)); in main()
73 check_getprop_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2); in main()
91 subsubnode2_offset = fdt_path_offset(fdt, "/subnode@2/subsubnode"); in main()
92 if (subsubnode2_offset != -FDT_ERR_NOTFOUND) in main()
94 fdt_strerror(subsubnode2_offset), in main()