Skip to content

Commit

Permalink
Add missing target types for OCMB
Browse files Browse the repository at this point in the history
Need to add missing unit numbers for FAPI ATTR Dump

Change-Id: Icb6a332e7f7e6a7177dc2efc2d5e87e552f06f2c
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/87392
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
  • Loading branch information
sannerd authored and dcrowell77 committed Dec 5, 2019
1 parent aad465f commit b284071
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/usr/targeting/common/target.C
Expand Up @@ -617,7 +617,9 @@ void Target::getAttrTankTargetPosData(uint16_t & o_pos,
}
else if ((l_element.type == TYPE_PROC) ||
(l_element.type == TYPE_MEMBUF) ||
(l_element.type == TYPE_DIMM))
(l_element.type == TYPE_DIMM) ||
(l_element.type == TYPE_OCMB_CHIP) ||
(l_element.type == TYPE_PMIC))
{
o_pos = l_element.instance;
}
Expand All @@ -635,7 +637,11 @@ void Target::getAttrTankTargetPosData(uint16_t & o_pos,
(l_element.type == TYPE_PPE) ||
(l_element.type == TYPE_PERV) ||
(l_element.type == TYPE_PEC) ||
(l_element.type == TYPE_PHB))
(l_element.type == TYPE_PHB) ||
(l_element.type == TYPE_OMI) ||
(l_element.type == TYPE_MCC) ||
(l_element.type == TYPE_OMIC) ||
(l_element.type == TYPE_MEM_PORT))
{
o_unitPos = l_element.instance;
}
Expand Down

0 comments on commit b284071

Please sign in to comment.