Lines Matching refs:subsubnode2_offset
35 int subnode1_offset, subnode2_offset, subsubnode2_offset; in main() local
58 subsubnode2_offset = fdt_path_offset(fdt, "/subnode@2/subsubnode"); in main()
59 if (subsubnode2_offset < 0) in main()
61 fdt_strerror(subsubnode2_offset)); in main()
62 check_getprop_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2); in main()
80 subsubnode2_offset = fdt_path_offset(fdt, "/subnode@2/subsubnode"); in main()
81 if (subsubnode2_offset < 0) in main()
83 fdt_strerror(subsubnode2_offset)); in main()
84 check_getprop_cell(fdt, subsubnode2_offset, "prop-int", TEST_VALUE_2); in main()
102 subsubnode2_offset = fdt_path_offset(fdt, "/subnode@2/subsubnode"); in main()
103 if (subsubnode2_offset != -FDT_ERR_NOTFOUND) in main()
105 fdt_strerror(subsubnode2_offset), in main()