Lines Matching refs:prop
186 const struct fdt_property *prop; in fdt_get_property() local
212 prop = fdt_offset_ptr(fdt, offset, sizeof(*prop)); in fdt_get_property()
213 if (! prop) in fdt_get_property()
215 namestroff = fdt32_to_cpu(prop->nameoff); in fdt_get_property()
218 int len = fdt32_to_cpu(prop->len); in fdt_get_property()
219 prop = fdt_offset_ptr(fdt, offset, in fdt_get_property()
220 sizeof(*prop)+len); in fdt_get_property()
221 if (! prop) in fdt_get_property()
227 return prop; in fdt_get_property()
247 const struct fdt_property *prop; in fdt_getprop() local
249 prop = fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_getprop()
250 if (! prop) in fdt_getprop()
253 return prop->data; in fdt_getprop()
434 const void *prop; in fdt_node_check_compatible() local
437 prop = fdt_getprop(fdt, nodeoffset, "compatible", &len); in fdt_node_check_compatible()
438 if (!prop) in fdt_node_check_compatible()
440 if (_stringlist_contains(prop, len, compatible)) in fdt_node_check_compatible()