Lines Matching refs:propname
451 const char *propname, u32 len) in of_find_property_value_of_size() argument
453 struct property *prop = of_find_property(np, propname, NULL); in of_find_property_value_of_size()
465 int of_read_u32(const struct device_node *np, const char *propname, u32 *outp) in of_read_u32() argument
469 debug("%s: %s: ", __func__, propname); in of_read_u32()
472 val = of_find_property_value_of_size(np, propname, sizeof(*outp)); in of_read_u32()
497 int of_property_read_u64(const struct device_node *np, const char *propname, in of_property_read_u64() argument
500 const __be32 *val = of_find_property_value_of_size(np, propname, in of_property_read_u64()
511 int of_read_u32_array(const struct device_node *np, const char *propname, in of_read_u32_array() argument
516 debug("%s: %s: ", __func__, propname); in of_read_u32_array()
517 val = of_find_property_value_of_size(np, propname, in of_read_u32_array()
530 int of_write_u32_array(const struct device_node *np, const char *propname, in of_write_u32_array() argument
535 debug("%s: %s: ", __func__, propname); in of_write_u32_array()
536 val = of_find_property_value_of_size(np, propname, in of_write_u32_array()
549 int of_property_match_string(const struct device_node *np, const char *propname, in of_property_match_string() argument
552 const struct property *prop = of_find_property(np, propname, NULL); in of_property_match_string()
588 const char *propname, const char **out_strs, in of_property_read_string_helper() argument
591 const struct property *prop = of_find_property(np, propname, NULL); in of_property_read_string_helper()