Lines Matching refs:propname

59  * @propname:	name of the property to be searched.
70 const char *propname, int elem_size)
72 struct property *prop = of_find_property(np, propname, NULL);
81 propname, np, elem_size);
93 * @propname: name of the property to be searched.
106 const char *propname, u32 min, u32 max, size_t *len)
108 struct property *prop = of_find_property(np, propname, NULL);
129 * @propname: name of the property to be searched.
143 const char *propname,
146 const u32 *val = of_find_property_value_of_size(np, propname,
163 * @propname: name of the property to be searched.
177 const char *propname,
180 const u64 *val = of_find_property_value_of_size(np, propname,
197 * @propname: name of the property to be searched.
217 const char *propname, u8 *out_values,
221 const u8 *val = of_find_property_value_of_size(np, propname,
247 * @propname: name of the property to be searched.
267 const char *propname, u16 *out_values,
271 const __be16 *val = of_find_property_value_of_size(np, propname,
297 * @propname: name of the property to be searched.
314 const char *propname, u32 *out_values,
318 const __be32 *val = of_find_property_value_of_size(np, propname,
342 * @propname: name of the property to be searched.
354 int of_property_read_u64(const struct device_node *np, const char *propname,
357 const __be32 *val = of_find_property_value_of_size(np, propname,
375 * @propname: name of the property to be searched.
392 const char *propname, u64 *out_values,
396 const __be32 *val = of_find_property_value_of_size(np, propname,
422 * @propname: name of the property to be searched.
435 int of_property_read_string(const struct device_node *np, const char *propname,
438 const struct property *prop = of_find_property(np, propname, NULL);
453 * @propname: string list property name
459 int of_property_match_string(const struct device_node *np, const char *propname,
462 const struct property *prop = of_find_property(np, propname, NULL);
490 * @propname: name of the property to be searched.
499 const char *propname, const char **out_strs,
502 const struct property *prop = of_find_property(np, propname, NULL);
875 const char *propname)
877 return of_property_read_bool(to_of_node(fwnode), propname);
881 const char *propname,
888 return of_property_count_elems_of_size(node, propname,
893 return of_property_read_u8_array(node, propname, val, nval);
895 return of_property_read_u16_array(node, propname, val, nval);
897 return of_property_read_u32_array(node, propname, val, nval);
899 return of_property_read_u64_array(node, propname, val, nval);
907 const char *propname, const char **val,
913 of_property_read_string_array(node, propname, val, nval) :
914 of_property_count_strings(node, propname);