Lines Matching full:changes
18 # TODO: include changes to child bindings
43 below for concrete changes.
50 class Changes: class
51 '''Container for all the changes that happened between the
117 ) -> Changes:
141 return Changes(vnds=sorted(vnds_set),
165 for binding, changes in binding2changes.items():
166 ret[get_vnd(binding.compatible)][binding] = changes
201 '''Enumerate the changes to a binding given its start and end values.'''
408 def print_changes(self, changes: Changes): argument
409 for vnd in changes.vnds:
416 added = changes.vnd2added[vnd]
424 removed = changes.vnd2removed[vnd]
432 modified = changes.vnd2changes[vnd]
447 for binding, changes in binding2changes.items():
450 for change in changes:
504 Print human-readable descriptions of changes to devicetree
514 help='''what you want to know bindings changes for
524 changes = get_changes_between(compat2binding_start,
528 Printer(outfile).print_changes(changes)