Lines Matching refs:prop

80 	struct property		*prop;  member
343 extern int of_add_property(struct device_node *np, struct property *prop);
344 extern int of_remove_property(struct device_node *np, struct property *prop);
367 const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
376 const char *of_prop_next_string(struct property *prop, const char *cur);
631 static inline const __be32 *of_prop_next_u32(struct property *prop, in of_prop_next_u32() argument
637 static inline const char *of_prop_next_string(struct property *prop, in of_prop_next_string() argument
838 struct property *prop = of_find_property(np, propname, NULL); in of_property_read_bool() local
840 return prop ? true : false; in of_property_read_bool()
871 #define of_property_for_each_u32(np, propname, prop, p, u) \ argument
872 for (prop = of_find_property(np, propname, NULL), \
873 p = of_prop_next_u32(prop, NULL, &u); \
875 p = of_prop_next_u32(prop, p, &u))
877 #define of_property_for_each_string(np, propname, prop, s) \ argument
878 for (prop = of_find_property(np, propname, NULL), \
879 s = of_prop_next_string(prop, NULL); \
881 s = of_prop_next_string(prop, s))
972 struct property *prop; member
1009 struct property *prop);
1024 struct device_node *np, struct property *prop) in of_changeset_add_property() argument
1026 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop); in of_changeset_add_property()
1030 struct device_node *np, struct property *prop) in of_changeset_remove_property() argument
1032 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop); in of_changeset_remove_property()
1036 struct device_node *np, struct property *prop) in of_changeset_update_property() argument
1038 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop); in of_changeset_update_property()