summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/utils/imageProcs/p9_tor.C
diff options
context:
space:
mode:
authorClaus Michael Olsen <cmolsen@us.ibm.com>2017-01-25 13:32:51 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-01-30 11:42:18 -0500
commit7f40e1f4f007c153c97ca90840e0dbd9bc25e014 (patch)
treed6fc11d3ed6e721abc3b17c73384301c2ec94262 /src/import/chips/p9/utils/imageProcs/p9_tor.C
parentef02e47839d9c312606cd7b51be614ec695d76ba (diff)
downloadtalos-hostboot-7f40e1f4f007c153c97ca90840e0dbd9bc25e014.tar.gz
talos-hostboot-7f40e1f4f007c153c97ca90840e0dbd9bc25e014.zip
Small fix to TOR API to NOT display dbg msg when passed a ringId
that doesn't exist in TOR. (This dbg msg was recently added to the RS4v3 commit 33993 and is causing confusion, so we're putting it under local debug control.) Change-Id: I1b00f5b19951134b3d3517db59639d39e5c257a6 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35419 Reviewed-by: Kahn C. Evans <kahnevan@us.ibm.com> Reviewed-by: Richard J. Knight <rjknight@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: Prachi Gupta <pragupta@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35439 Reviewed-by: Hostboot Team <hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9/utils/imageProcs/p9_tor.C')
-rw-r--r--src/import/chips/p9/utils/imageProcs/p9_tor.C5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/import/chips/p9/utils/imageProcs/p9_tor.C b/src/import/chips/p9/utils/imageProcs/p9_tor.C
index df60e7d02..2f79ce294 100644
--- a/src/import/chips/p9/utils/imageProcs/p9_tor.C
+++ b/src/import/chips/p9/utils/imageProcs/p9_tor.C
@@ -541,7 +541,10 @@ int get_ring_from_sbe_image( void* i_ringSection, // Ring section
}
}
- MY_ERR("i_ringId=0x%x is an invalid ring ID for SBE", i_ringId);
+ if (i_dbgl > 0)
+ {
+ MY_DBG("i_ringId=0x%x is an invalid ring ID for SBE\n", i_ringId);
+ }
return TOR_INVALID_RING_ID;
OpenPOWER on IntegriCloud