diff options
| -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; } } |

