Lines Matching refs:node_off
43 int node_off; in fdt_getprop_u32_by_poffset() local
46 node_off = fdt_path_offset(fdt, path); in fdt_getprop_u32_by_poffset()
47 if (node_off < 0) in fdt_getprop_u32_by_poffset()
48 return node_off; in fdt_getprop_u32_by_poffset()
50 val = fdt_getprop(fdt, node_off, name, &len); in fdt_getprop_u32_by_poffset()
62 int node_off; in check_getprop_string_by_name() local
64 node_off = fdt_path_offset(fdt, path); in check_getprop_string_by_name()
65 if (node_off < 0) in check_getprop_string_by_name()
66 return node_off; in check_getprop_string_by_name()
68 check_getprop_string(fdt, node_off, name, val); in check_getprop_string_by_name()
76 int node_off; in check_getprop_u32_by_name() local
78 node_off = fdt_path_offset(fdt, path); in check_getprop_u32_by_name()
79 CHECK(node_off < 0); in check_getprop_u32_by_name()
81 check_getprop_cell(fdt, node_off, name, val); in check_getprop_u32_by_name()
89 int node_off; in check_getprop_null_by_name() local
91 node_off = fdt_path_offset(fdt, path); in check_getprop_null_by_name()
92 CHECK(node_off < 0); in check_getprop_null_by_name()
94 check_property(fdt, node_off, name, 0, NULL); in check_getprop_null_by_name()