dtoc: Use self._options instead of the global options
This class should use the options object passed to it rather than finding the global one. Fix it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
cb008830aa
commit
418355cbaa
|
|
@ -177,7 +177,7 @@ class DtbPlatdata:
|
||||||
for node in root.subnodes:
|
for node in root.subnodes:
|
||||||
if 'compatible' in node.props:
|
if 'compatible' in node.props:
|
||||||
status = node.props.get('status')
|
status = node.props.get('status')
|
||||||
if (not options.include_disabled and not status or
|
if (not self._options.include_disabled and not status or
|
||||||
status.value != 'disabled'):
|
status.value != 'disabled'):
|
||||||
self._valid_nodes.append(node)
|
self._valid_nodes.append(node)
|
||||||
phandle_prop = node.props.get('phandle')
|
phandle_prop = node.props.get('phandle')
|
||||||
|
|
@ -203,7 +203,7 @@ class DtbPlatdata:
|
||||||
for node in self.fdt.GetRoot().subnodes:
|
for node in self.fdt.GetRoot().subnodes:
|
||||||
if 'compatible' in node.props:
|
if 'compatible' in node.props:
|
||||||
status = node.props.get('status')
|
status = node.props.get('status')
|
||||||
if (not options.include_disabled and not status or
|
if (not self._options.include_disabled and not status or
|
||||||
status.value != 'disabled'):
|
status.value != 'disabled'):
|
||||||
node_list.append(node)
|
node_list.append(node)
|
||||||
phandle_prop = node.props.get('phandle')
|
phandle_prop = node.props.get('phandle')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue