diff options
author | Stephen Glancy <sglancy@us.ibm.com> | 2020-01-07 10:29:07 -0500 |
---|---|---|
committer | Daniel M Crowell <dcrowell@us.ibm.com> | 2020-01-08 19:00:24 -0600 |
commit | aae5b3e332c25897a5687584b168e0ccd1eaebe2 (patch) | |
tree | 9b63b28dc93a8f1878d53cdf9a5d560e0112fbe7 | |
parent | d99b1eddcac8a7f43a0d087921fbb83be450f347 (diff) | |
download | talos-hostboot-aae5b3e332c25897a5687584b168e0ccd1eaebe2.tar.gz talos-hostboot-aae5b3e332c25897a5687584b168e0ccd1eaebe2.zip |
Fixes explorer FIR check to preserve bad RC
Change-Id: Ibdbf7f973f4801db47b185e4c8ebcfed761dae1e
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89297
Reviewed-by: Louis Stermole <stermole@us.ibm.com>
Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
Reviewed-by: Christian R Geddes <crgeddes@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Jennifer A Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/89331
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
-rw-r--r-- | src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/phy/exp_train_handler.C | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/phy/exp_train_handler.C b/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/phy/exp_train_handler.C index 8ca3b5f87..82a538c32 100644 --- a/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/phy/exp_train_handler.C +++ b/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/phy/exp_train_handler.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2019 */ +/* Contributors Listed Below - COPYRIGHT 2019,2020 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -95,12 +95,11 @@ namespace check // TK update this when FIR's are fully reviewed template<> fapi2::ReturnCode bad_fir_bits<mss::mc_type::EXPLORER>( const fapi2::Target<fapi2::TARGET_TYPE_OCMB_CHIP>& i_target, - fapi2::ReturnCode& io_rc, bool& o_fir_error ) { - io_rc = fapi2::FAPI2_RC_SUCCESS; + FAPI_ERR("%s Checking for FIR's is currently unimplemented. Passing back the discovered RC", mss::c_str(i_target)); o_fir_error = false; return fapi2::FAPI2_RC_SUCCESS; } |