dts/extract_dts_includes.py: Fix IRQ define name creation
We were missing the cell name in how we create the IRQ define. This was working fine because the only name we had been using with IRQ which we would shorten down. Change-Id: I8449c8ced1a9284982d3d5b07c6acdcf26e965e2 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
8eea1d78d8
commit
023f2ce94d
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ def extract_interrupts(node_address, yaml, y_key, names, defs, def_label):
|
|||
if l_cell_name == l_cell_prefix:
|
||||
l_cell_name = []
|
||||
|
||||
l_fqn = '_'.join(l_base + l_cell_prefix + l_idx)
|
||||
l_fqn = '_'.join(l_base + l_cell_prefix + l_idx + l_cell_name)
|
||||
prop_def[l_fqn] = props.pop(0)
|
||||
if len(name):
|
||||
prop_alias['_'.join(l_base + name + l_cell_prefix)] = l_fqn
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue