Lines Matching full:ocs

1605 extern void of_changeset_init(struct of_changeset *ocs);
1606 extern void of_changeset_destroy(struct of_changeset *ocs);
1607 extern int of_changeset_apply(struct of_changeset *ocs);
1608 extern int of_changeset_revert(struct of_changeset *ocs);
1609 extern int of_changeset_action(struct of_changeset *ocs,
1613 static inline int of_changeset_attach_node(struct of_changeset *ocs, in of_changeset_attach_node() argument
1616 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL); in of_changeset_attach_node()
1619 static inline int of_changeset_detach_node(struct of_changeset *ocs, in of_changeset_detach_node() argument
1622 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL); in of_changeset_detach_node()
1625 static inline int of_changeset_add_property(struct of_changeset *ocs, in of_changeset_add_property() argument
1628 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop); in of_changeset_add_property()
1631 static inline int of_changeset_remove_property(struct of_changeset *ocs, in of_changeset_remove_property() argument
1634 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop); in of_changeset_remove_property()
1637 static inline int of_changeset_update_property(struct of_changeset *ocs, in of_changeset_update_property() argument
1640 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop); in of_changeset_update_property()
1643 struct device_node *of_changeset_create_node(struct of_changeset *ocs,
1646 int of_changeset_add_prop_string(struct of_changeset *ocs,
1649 int of_changeset_add_prop_string_array(struct of_changeset *ocs,
1653 int of_changeset_add_prop_u32_array(struct of_changeset *ocs,
1657 static inline int of_changeset_add_prop_u32(struct of_changeset *ocs, in of_changeset_add_prop_u32() argument
1662 return of_changeset_add_prop_u32_array(ocs, np, prop_name, &val, 1); in of_changeset_add_prop_u32()
1665 int of_changeset_update_prop_string(struct of_changeset *ocs,
1669 int of_changeset_add_prop_bool(struct of_changeset *ocs, struct device_node *np,