diff options
author | Richard J. Knight <rjknight@us.ibm.com> | 2017-08-01 13:44:41 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-08-04 10:32:30 -0400 |
commit | 83bf1baf4307ce75c630d585a01c6e9decedd23d (patch) | |
tree | 706a58424977b5a7ac8d641311309ad62f443fd7 /src/import | |
parent | 3fdc193a8ad53116ec675c71c720bec15b519290 (diff) | |
download | talos-hostboot-83bf1baf4307ce75c630d585a01c6e9decedd23d.tar.gz talos-hostboot-83bf1baf4307ce75c630d585a01c6e9decedd23d.zip |
Compile failure in cronus env
-Added missing fapi2:: namespace qualifier to sbeFfdc_t
Change-Id: I9f646c774994f8c456af2d8535a456fea6736c00
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/44055
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: Brent Wieman <bwieman@us.ibm.com>
Dev-Ready: Brent Wieman <bwieman@us.ibm.com>
Reviewed-by: Thi N. Tran <thi@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/44058
Reviewed-by: Hostboot Team <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/import')
-rwxr-xr-x | src/import/hwpf/fapi2/tools/parseErrorInfo.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/import/hwpf/fapi2/tools/parseErrorInfo.pl b/src/import/hwpf/fapi2/tools/parseErrorInfo.pl index 662e7889a..7bc0658c5 100755 --- a/src/import/hwpf/fapi2/tools/parseErrorInfo.pl +++ b/src/import/hwpf/fapi2/tools/parseErrorInfo.pl @@ -1766,7 +1766,7 @@ print SBFILE "{\\\n"; print SBFILE " /* create a new rc and capture invalid ffdc buffer */\\\n"; print SBFILE " /* FFDC buffer size is 20 sbeFfdc_t entries */\\\n"; print SBFILE " /* variable buffer needs size in uint32_t, and the resulting bit count */\\\n"; -print SBFILE " const uint32_t size_bytes = (sizeof(sbeFfdc_t)*20);\\\n"; +print SBFILE " const uint32_t size_bytes = (sizeof(fapi2::sbeFfdc_t)*20);\\\n"; print SBFILE " fapi2::variable_buffer l_buffer((uint32_t*)FFDC_BUFFER, size_bytes/4, size_bytes*8);\\\n"; print SBFILE " fapi2::INVALID_SBE_FFDC_PACKET(fapi2::FAPI2_ERRL_SEV_UNRECOVERABLE,RC)."; print SBFILE "set_FFDC_BUFFER(l_buffer).execute();\\\n"; |