• Home
  • Raw
  • Download

Lines Matching refs:ocs

1594 extern void of_changeset_init(struct of_changeset *ocs);
1595 extern void of_changeset_destroy(struct of_changeset *ocs);
1596 extern int of_changeset_apply(struct of_changeset *ocs);
1597 extern int of_changeset_revert(struct of_changeset *ocs);
1598 extern int of_changeset_action(struct of_changeset *ocs,
1602 static inline int of_changeset_attach_node(struct of_changeset *ocs, in of_changeset_attach_node() argument
1605 return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL); in of_changeset_attach_node()
1608 static inline int of_changeset_detach_node(struct of_changeset *ocs, in of_changeset_detach_node() argument
1611 return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL); in of_changeset_detach_node()
1614 static inline int of_changeset_add_property(struct of_changeset *ocs, in of_changeset_add_property() argument
1617 return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop); in of_changeset_add_property()
1620 static inline int of_changeset_remove_property(struct of_changeset *ocs, in of_changeset_remove_property() argument
1623 return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop); in of_changeset_remove_property()
1626 static inline int of_changeset_update_property(struct of_changeset *ocs, in of_changeset_update_property() argument
1629 return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop); in of_changeset_update_property()
1632 struct device_node *of_changeset_create_node(struct of_changeset *ocs,
1635 int of_changeset_add_prop_string(struct of_changeset *ocs,
1638 int of_changeset_add_prop_string_array(struct of_changeset *ocs,
1642 int of_changeset_add_prop_u32_array(struct of_changeset *ocs,
1646 static inline int of_changeset_add_prop_u32(struct of_changeset *ocs, in of_changeset_add_prop_u32() argument
1651 return of_changeset_add_prop_u32_array(ocs, np, prop_name, &val, 1); in of_changeset_add_prop_u32()
1654 int of_changeset_add_prop_bool(struct of_changeset *ocs, struct device_node *np,