Lines Matching full:ocs

1593 extern void of_changeset_init(struct of_changeset *ocs);
1594 extern void of_changeset_destroy(struct of_changeset *ocs);
1595 extern int of_changeset_apply(struct of_changeset *ocs);
1596 extern int of_changeset_revert(struct of_changeset *ocs);
1597 extern int of_changeset_action(struct of_changeset *ocs,
1601 static inline int of_changeset_attach_node(struct of_changeset *ocs, in of_changeset_attach_node() argument
1604 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL); in of_changeset_attach_node()
1607 static inline int of_changeset_detach_node(struct of_changeset *ocs, in of_changeset_detach_node() argument
1610 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL); in of_changeset_detach_node()
1613 static inline int of_changeset_add_property(struct of_changeset *ocs, in of_changeset_add_property() argument
1616 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop); in of_changeset_add_property()
1619 static inline int of_changeset_remove_property(struct of_changeset *ocs, in of_changeset_remove_property() argument
1622 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop); in of_changeset_remove_property()
1625 static inline int of_changeset_update_property(struct of_changeset *ocs, in of_changeset_update_property() argument
1628 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop); in of_changeset_update_property()
1631 struct device_node *of_changeset_create_node(struct of_changeset *ocs,
1634 int of_changeset_add_prop_string(struct of_changeset *ocs,
1637 int of_changeset_add_prop_string_array(struct of_changeset *ocs,
1641 int of_changeset_add_prop_u32_array(struct of_changeset *ocs,
1645 static inline int of_changeset_add_prop_u32(struct of_changeset *ocs, in of_changeset_add_prop_u32() argument
1650 return of_changeset_add_prop_u32_array(ocs, np, prop_name, &val, 1); in of_changeset_add_prop_u32()
1653 int of_changeset_update_prop_string(struct of_changeset *ocs,
1657 int of_changeset_add_prop_bool(struct of_changeset *ocs, struct device_node *np,