scripts: extract_dts_includes: fix recursion in extract_controller
Commit 93d3a42776
changed the interface
of extract_controller() but did not change the recursive call within.
Signed-off-by: Bobby Noelte <b0661n0e17e@gmail.com>
This commit is contained in:
parent
163dec6dc3
commit
1d27ee0b09
1 changed files with 2 additions and 2 deletions
|
@ -250,8 +250,8 @@ def extract_controller(node_address, yaml, prop, prop_values, index, defs, def_l
|
|||
|
||||
# recurse if we have anything left
|
||||
if len(prop_values):
|
||||
extract_controller(node_address, prop, prop_values, index +1, prefix, defs,
|
||||
def_label)
|
||||
extract_controller(node_address, yaml, prop, prop_values, index + 1,
|
||||
defs, def_label, generic)
|
||||
|
||||
|
||||
def extract_cells(node_address, yaml, prop, prop_values, names, index, defs,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue