diff options
| author | Claus Michael Olsen <cmolsen@us.ibm.com> | 2017-12-12 14:59:31 -0600 |
|---|---|---|
| committer | Joshua Hunsberger <jahunsbe@us.ibm.com> | 2018-02-01 16:30:08 -0600 |
| commit | f408a59b79aa4e3b5ad1f18aaa77bdb002a075cd (patch) | |
| tree | c748316232631a3f314816039534a2eac24973ed /import/chips/p9/xip | |
| parent | ad5082088b9839a1d2bdcb80b91b448a4dde223b (diff) | |
| download | talos-hcode-f408a59b79aa4e3b5ad1f18aaa77bdb002a075cd.tar.gz talos-hcode-f408a59b79aa4e3b5ad1f18aaa77bdb002a075cd.zip | |
Removing P9_XIP_ITEM_NOT_FOUND trace out msg from p9_xip_image.C
Change-Id: I72d3649a173fecee990c7ec1793568675be6c53d
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/50831
Reviewed-by: Matt K. Light <mklight@us.ibm.com>
Reviewed-by: Joseph J. McGill <jmcgill@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: HWSV CI <hwsv-ci+hostboot@us.ibm.com>
Dev-Ready: Matt K. Light <mklight@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: Jennifer A. Stofer <stofer@us.ibm.com>
Diffstat (limited to 'import/chips/p9/xip')
| -rw-r--r-- | import/chips/p9/xip/p9_xip_image.C | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/import/chips/p9/xip/p9_xip_image.C b/import/chips/p9/xip/p9_xip_image.C index 6c2e8fef..25b98827 100644 --- a/import/chips/p9/xip/p9_xip_image.C +++ b/import/chips/p9/xip/p9_xip_image.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HCODE Project */ /* */ -/* COPYRIGHT 2015,2017 */ +/* COPYRIGHT 2015,2018 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -869,7 +869,7 @@ xipLinearSearch(void* i_image, const char* i_id, P9XipToc** o_entry) else { *o_entry = 0; - rc = TRACE_ERROR(P9_XIP_ITEM_NOT_FOUND); + rc = P9_XIP_ITEM_NOT_FOUND; } } @@ -930,7 +930,7 @@ xipBinarySearch(void* i_image, const char* i_id, P9XipToc** o_entry) if (*o_entry == 0) { - rc = TRACE_ERROR(P9_XIP_ITEM_NOT_FOUND); + rc = P9_XIP_ITEM_NOT_FOUND; break; } } |

