1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| property *of_find_property(const struct device_node *np, const char *name, int *lenp);
int of_property_count_elems_of_size(const struct device_node *np,const char *propname,int elem_size);
int of_property_read_u32_index(const struct device_node *np,const char *propname, u32 index,u32 *out_value);
int of_property_read_u8_array(const struct device_node *np,const char *propname,u8 *out_values,size_t sz);
int of_property_read_u8(const struct device_node *np, const char *propname, u8 *out_value);
int of_property_read_string(struct device_node *np,const char *propname,const char **out_string);
int of_n_addr_cells(struct device_node *np);
int of_n_size_cells(struct device_node *np);
|