diff options
author | crgeddes <crgeddes@us.ibm.com> | 2016-02-23 16:33:59 -0600 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-02-26 16:01:05 -0600 |
commit | da0248159af1297255bd018180b1f8b3e220503c (patch) | |
tree | f9e56fffcde4839c8e39bd5941dfa83cbd9639c1 | |
parent | 9243a34e7e752c020869bc25d2cdf85aa5d185da (diff) | |
download | talos-hostboot-da0248159af1297255bd018180b1f8b3e220503c.tar.gz talos-hostboot-da0248159af1297255bd018180b1f8b3e220503c.zip |
Fix PU_NVBUS_CHIPUNIT enum value
Change-Id: I08e73efea2b9bd0c1bb6e60b5ed7d0751fcd7c82
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/24681
Tested-by: Jenkins Server
Tested-by: Auto Mirror
Tested-by: Hostboot CI
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/24682
-rw-r--r-- | src/import/chips/p9/common/scominfo/p9_cu.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/import/chips/p9/common/scominfo/p9_cu.H b/src/import/chips/p9/common/scominfo/p9_cu.H index f9d8458df..c785c5b6c 100644 --- a/src/import/chips/p9/common/scominfo/p9_cu.H +++ b/src/import/chips/p9/common/scominfo/p9_cu.H @@ -46,7 +46,6 @@ extern "C" PU_XBUS_CHIPUNIT, ///< XBUS PU_OBUS_CHIPUNIT, ///< OBUS PU_NV_CHIPUNIT, ///< NV Link Brick - PU_NVBUS_CHIPUNIT, ///< DO NOT USE! TEMPORARY FOR CI ONLY PU_PEC_CHIPUNIT, ///< PCIe (PEC) PU_PHB_CHIPUNIT, ///< PCIe (PHB) PU_MI_CHIPUNIT, ///< MI (Cumulus only) @@ -59,7 +58,8 @@ extern "C" PU_PPE_CHIPUNIT, ///< PPE PU_SBE_CHIPUNIT, ///< SBE PU_CAPP_CHIPUNIT, ///< CAPP - NONE ///< None/Invalid + NONE, ///< None/Invalid + PU_NVBUS_CHIPUNIT = PU_NV_CHIPUNIT ///< DO NOT USE! TEMPORARY FOR CI ONLY } p9ChipUnits_t; /// P9 chip unit pairing struct |