Lines Matching refs:ocs
1471 extern void of_changeset_init(struct of_changeset *ocs);
1472 extern void of_changeset_destroy(struct of_changeset *ocs);
1473 extern int of_changeset_apply(struct of_changeset *ocs);
1474 extern int of_changeset_revert(struct of_changeset *ocs);
1475 extern int of_changeset_action(struct of_changeset *ocs,
1479 static inline int of_changeset_attach_node(struct of_changeset *ocs, in of_changeset_attach_node() argument
1482 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL); in of_changeset_attach_node()
1485 static inline int of_changeset_detach_node(struct of_changeset *ocs, in of_changeset_detach_node() argument
1488 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL); in of_changeset_detach_node()
1491 static inline int of_changeset_add_property(struct of_changeset *ocs, in of_changeset_add_property() argument
1494 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop); in of_changeset_add_property()
1497 static inline int of_changeset_remove_property(struct of_changeset *ocs, in of_changeset_remove_property() argument
1500 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop); in of_changeset_remove_property()
1503 static inline int of_changeset_update_property(struct of_changeset *ocs, in of_changeset_update_property() argument
1506 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop); in of_changeset_update_property()