diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2018-06-19 12:04:15 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-07-11 12:47:36 -0400 |
commit | e14387c19cc9fbc52ceaa5d116d13ba40f46bec6 (patch) | |
tree | db2c183bce4c5998636e0470c046ef378f8e3df5 /src/usr/pnor | |
parent | 1441646529dc53ff2f6a145a6da47e12203d45a4 (diff) | |
download | blackbird-hostboot-e14387c19cc9fbc52ceaa5d116d13ba40f46bec6.tar.gz blackbird-hostboot-e14387c19cc9fbc52ceaa5d116d13ba40f46bec6.zip |
Fix bad traces in pnor utility functions
Noticed a couple of malformed strings, fixed them.
Change-Id: Ic38e88061117adc1fdaf9180015265fa27371e5e
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/61714
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/pnor')
-rw-r--r-- | src/usr/pnor/pnor_utils.C | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/pnor/pnor_utils.C b/src/usr/pnor/pnor_utils.C index 324548740..6174f6e60 100644 --- a/src/usr/pnor/pnor_utils.C +++ b/src/usr/pnor/pnor_utils.C @@ -260,7 +260,7 @@ PNOR::parseEntries (ffs_hdr* i_ffs_hdr, { PNOR_UTIL_TRACE_W_BRK(BTLDR_TRC_UTILS_PARSE_CHECKSUM_ERROR, "E>PNOR::parseEntries: " - "Check sum error while parseing entry ", + "Check sum error while parseing entry " "%d in TOC", i); io_errCode |= ENTRY_ERR; io_errCode |= ENTRY_CHECKSUM_ERR; @@ -276,7 +276,7 @@ PNOR::parseEntries (ffs_hdr* i_ffs_hdr, { PNOR_UTIL_TRACE_BL_SKIP(BTLDR_TRC_UTILS_PARSE_INVALID_SECTION, "PNOR::parseEntries: " - "Unsupported section found while parsing ", + "Unsupported section found while parsing " "entry %d in TOC \n Entry name is \"%s\"", i, cur_entry->name); //continue to skip invalid section @@ -305,7 +305,7 @@ PNOR::parseEntries (ffs_hdr* i_ffs_hdr, { PNOR_UTIL_TRACE_W_BRK(BTLDR_TRC_UTILS_PARSE_EXCEEDS_FLASH, "E>PNOR::parseEntries: " - "Exceeded flash while parsing entry ", + "Exceeded flash while parsing entry " "%d in TOC \n Entry name is \"%s\"", i, cur_entry->name); io_errCode |= ENTRY_ERR; |