• Home
  • Raw
  • Download

Lines Matching refs:prop

96 	struct property		*prop;  member
416 extern int of_add_property(struct device_node *np, struct property *prop);
417 extern int of_remove_property(struct device_node *np, struct property *prop);
438 const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
447 const char *of_prop_next_string(struct property *prop, const char *cur);
809 static inline int of_add_property(struct device_node *np, struct property *prop) in of_add_property() argument
814 static inline int of_remove_property(struct device_node *np, struct property *prop) in of_remove_property() argument
829 static inline const __be32 *of_prop_next_u32(struct property *prop, in of_prop_next_u32() argument
835 static inline const char *of_prop_next_string(struct property *prop, in of_prop_next_string() argument
1255 struct property *prop = of_find_property(np, propname, NULL); in of_property_read_bool() local
1257 return prop ? true : false; in of_property_read_bool()
1433 for (struct {struct property *prop; const __be32 *item; } _it = \
1435 of_prop_next_u32(_it.prop, NULL, &u)}; \
1437 _it.item = of_prop_next_u32(_it.prop, _it.item, &u))
1439 #define of_property_for_each_string(np, propname, prop, s) \ argument
1440 for (prop = of_find_property(np, propname, NULL), \
1441 s = of_prop_next_string(prop, NULL); \
1443 s = of_prop_next_string(prop, s))
1561 struct property *prop; member
1600 struct property *prop);
1615 struct device_node *np, struct property *prop) in of_changeset_add_property() argument
1617 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop); in of_changeset_add_property()
1621 struct device_node *np, struct property *prop) in of_changeset_remove_property() argument
1623 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop); in of_changeset_remove_property()
1627 struct device_node *np, struct property *prop) in of_changeset_update_property() argument
1629 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop); in of_changeset_update_property()