Skip to content

Commit

Permalink
Fixes from HB for GCC 8 Compiler
Browse files Browse the repository at this point in the history
Fix compiler errors found when compiling HB with GCC 8.3.0

Change-Id: I1a8bc7f37e6b4c57d880c69acd73bd40e17676b7
RTC: 212930
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/83177
Reviewed-by: Nicholas E Bofferding <bofferdn@us.ibm.com>
Reviewed-by: Ilya Smirnov <ismirno@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: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com>
Reviewed-by: Jennifer A Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/83197
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
  • Loading branch information
LF-Luis authored and Nicholas E Bofferding committed Sep 4, 2019
1 parent b9cb9f7 commit 5474e92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/import/chips/p9/procedures/hwp/nest/p9_fab_iovalid.C
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2015 */
/* Contributors Listed Below - COPYRIGHT 2015,2019 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -998,7 +998,7 @@ fapi2::ReturnCode p9_fab_iovalid_get_link_delay(
{
FAPI_DBG("Start");
fapi2::buffer<uint64_t> l_link_delay_reg;
uint32_t l_sublink_delay[2];
uint32_t l_sublink_delay[2] = {};

// read link delay register, extract hi/lo delay values & return their average
FAPI_TRY(fapi2::getScom(i_target, i_link_ctl.tl_link_delay_addr, l_link_delay_reg),
Expand Down

0 comments on commit 5474e92

Please sign in to comment.