• Home
  • Raw
  • Download

Lines Matching refs:prop

99 	struct property		*prop;  member
402 extern int of_add_property(struct device_node *np, struct property *prop);
403 extern int of_remove_property(struct device_node *np, struct property *prop);
550 const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
559 const char *of_prop_next_string(struct property *prop, const char *cur);
940 static inline const __be32 *of_prop_next_u32(struct property *prop, in of_prop_next_u32() argument
946 static inline const char *of_prop_next_string(struct property *prop, in of_prop_next_string() argument
1204 struct property *prop = of_find_property(np, propname, NULL); in of_property_read_bool() local
1206 return prop ? true : false; in of_property_read_bool()
1243 #define of_property_for_each_u32(np, propname, prop, p, u) \ argument
1244 for (prop = of_find_property(np, propname, NULL), \
1245 p = of_prop_next_u32(prop, NULL, &u); \
1247 p = of_prop_next_u32(prop, p, &u))
1249 #define of_property_for_each_string(np, propname, prop, s) \ argument
1250 for (prop = of_find_property(np, propname, NULL), \
1251 s = of_prop_next_string(prop, NULL); \
1253 s = of_prop_next_string(prop, s))
1352 struct property *prop; member
1389 struct property *prop);
1404 struct device_node *np, struct property *prop) in of_changeset_add_property() argument
1406 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop); in of_changeset_add_property()
1410 struct device_node *np, struct property *prop) in of_changeset_remove_property() argument
1412 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop); in of_changeset_remove_property()
1416 struct device_node *np, struct property *prop) in of_changeset_update_property() argument
1418 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop); in of_changeset_update_property()