Lines Matching refs:propname

61  * @propname:	name of the property to be searched.
72 const char *propname, int elem_size)
74 struct property *prop = of_find_property(np, propname, NULL);
83 propname, np, elem_size);
95 * @propname: name of the property to be searched.
108 const char *propname, u32 min, u32 max, size_t *len)
110 struct property *prop = of_find_property(np, propname, NULL);
131 * @propname: name of the property to be searched.
145 const char *propname,
148 const u32 *val = of_find_property_value_of_size(np, propname,
165 * @propname: name of the property to be searched.
179 const char *propname,
182 const u64 *val = of_find_property_value_of_size(np, propname,
199 * @propname: name of the property to be searched.
219 const char *propname, u8 *out_values,
223 const u8 *val = of_find_property_value_of_size(np, propname,
249 * @propname: name of the property to be searched.
269 const char *propname, u16 *out_values,
273 const __be16 *val = of_find_property_value_of_size(np, propname,
299 * @propname: name of the property to be searched.
316 const char *propname, u32 *out_values,
320 const __be32 *val = of_find_property_value_of_size(np, propname,
344 * @propname: name of the property to be searched.
356 int of_property_read_u64(const struct device_node *np, const char *propname,
359 const __be32 *val = of_find_property_value_of_size(np, propname,
377 * @propname: name of the property to be searched.
394 const char *propname, u64 *out_values,
398 const __be32 *val = of_find_property_value_of_size(np, propname,
424 * @propname: name of the property to be searched.
440 int of_property_read_string(const struct device_node *np, const char *propname,
443 const struct property *prop = of_find_property(np, propname, NULL);
458 * @propname: string list property name
464 int of_property_match_string(const struct device_node *np, const char *propname,
467 const struct property *prop = of_find_property(np, propname, NULL);
495 * @propname: name of the property to be searched.
504 const char *propname, const char **out_strs,
507 const struct property *prop = of_find_property(np, propname, NULL);
896 const char *propname)
898 return of_property_read_bool(to_of_node(fwnode), propname);
902 const char *propname,
909 return of_property_count_elems_of_size(node, propname,
914 return of_property_read_u8_array(node, propname, val, nval);
916 return of_property_read_u16_array(node, propname, val, nval);
918 return of_property_read_u32_array(node, propname, val, nval);
920 return of_property_read_u64_array(node, propname, val, nval);
928 const char *propname, const char **val,
934 of_property_read_string_array(node, propname, val, nval) :
935 of_property_count_strings(node, propname);