Modified the handling of substrate ports so that an existing port
number for a substrate port does not get reassigned, which will cause port ordering issues.
This commit is contained in:
parent
79dc621626
commit
44b269e037
|
|
@ -1263,7 +1263,8 @@ efBuildDevNode(def, name, isSubsNode)
|
||||||
{
|
{
|
||||||
/* This node is declared to be an implicit port */
|
/* This node is declared to be an implicit port */
|
||||||
nn->efnn_node->efnode_flags |= EF_SUBS_PORT;
|
nn->efnn_node->efnode_flags |= EF_SUBS_PORT;
|
||||||
nn->efnn_port = -1;
|
if (isNewNode == TRUE)
|
||||||
|
nn->efnn_port = -1;
|
||||||
def->def_flags |= DEF_SUBSNODES;
|
def->def_flags |= DEF_SUBSNODES;
|
||||||
}
|
}
|
||||||
nn->efnn_node->efnode_flags |= EF_SUBS_NODE;
|
nn->efnn_node->efnode_flags |= EF_SUBS_NODE;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue