From f802d0bbc5a33966d22c45b35a9625bc55f5e72b Mon Sep 17 00:00:00 2001 From: Claus Michael Olsen Date: Tue, 6 Sep 2016 14:59:11 -0500 Subject: xip_customize: More removal of trace output noise for Cronus. Change-Id: I67153e2e00c2f09b407020fb14039b1fab2cf794 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/29286 Tested-by: Jenkins Server Tested-by: Hostboot CI Reviewed-by: Prachi Gupta Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/29294 Reviewed-by: Hostboot Team Tested-by: FSP CI Jenkins Reviewed-by: William G. Hoffa --- .../chips/p9/procedures/hwp/accessors/p9_mvpd_ring_funcs.C | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'src/import/chips/p9/procedures/hwp/accessors') diff --git a/src/import/chips/p9/procedures/hwp/accessors/p9_mvpd_ring_funcs.C b/src/import/chips/p9/procedures/hwp/accessors/p9_mvpd_ring_funcs.C index 1c6650825..db02498ec 100644 --- a/src/import/chips/p9/procedures/hwp/accessors/p9_mvpd_ring_funcs.C +++ b/src/import/chips/p9/procedures/hwp/accessors/p9_mvpd_ring_funcs.C @@ -284,10 +284,15 @@ extern "C" //@TODO: Uncomment the following after PowerOn. Also, need to come // to agreement whether this should be fatal error or not. // For now, for PO, it's considered benign and noise and is - // being commented out... most of it at least. - FAPI_ASSERT( l_ringLen != 0, - fapi2::MVPD_RING_NOT_FOUND(). - set_CHIP_TARGET(i_fapiTarget) ); + // being commented out and we just exit with manually setting + // the RC ring not found but which doesn't activates the FFDC + // capturing. + if (l_ringLen == 0) + { + fapi2::current_err = RC_MVPD_RING_NOT_FOUND; + goto fapi_try_exit; + } + //FAPI_ASSERT(l_ringLen != 0, // fapi2::MVPD_RING_NOT_FOUND(). // set_CHIP_TARGET(i_fapiTarget). -- cgit v1.2.1