Skip to content

Commit

Permalink
PRD: Continue looking for attns after SCOM fail on mask/act regs
Browse files Browse the repository at this point in the history
Change-Id: I55b2587965ce1fb67653eaba76734523515c6390
CQ: SW420916
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/56336
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Brian J. Stegmiller <bjs@us.ibm.com>
Reviewed-by: Benjamin J. Weisenbeck <bweisenb@us.ibm.com>
Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/56488
CI-Ready: Zane C. Shelley <zshelle@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>
  • Loading branch information
cnpalmer authored and zane131 committed Mar 30, 2018
1 parent fc2a044 commit 39489bc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2012,2017 */
/* Contributors Listed Below - COPYRIGHT 2012,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -182,8 +182,8 @@ int32_t ErrorRegister::Analyze( STEP_CODE_DATA_STRUCT & io_sdc )
// Make sure forward progress is made.
if ( tmp_bl == remaining_bl ) break;

} while ( (PRD_SCAN_COMM_REGISTER_ZERO == res_rc) &&
(0 != remaining_bl.size()) );
} while ( (PRD_SCAN_COMM_REGISTER_ZERO == res_rc ||
PRD_SCANCOM_FAILURE == res_rc) && (0 != remaining_bl.size()) );

if ( SUCCESS == rc ) rc = res_rc; // previous rc has prioity over res_rc

Expand Down

0 comments on commit 39489bc

Please sign in to comment.