Skip to content

Commit

Permalink
BugFix for extract_sbe_rc
Browse files Browse the repository at this point in the history
- Fixing the checking condition for updating IAR from SRR0

Change-Id: Ia9e6e36dc64b95b3b4d53609810ebf89c2c7dd42
CQ: SW436877
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/61932
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: SRINIVAS V. POLISETTY <srinivan@in.ibm.com>
Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/61937
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>
  • Loading branch information
Soma BhanuTej authored and dcrowell77 committed Jul 11, 2018
1 parent f13cb43 commit 2271594
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ fapi2::ReturnCode p9_extract_sbe_rc(const fapi2::Target<fapi2::TARGET_TYPE_PROC_
FAPI_INF("p9_extract_sbe_rc : Rammed SBE Local FI2C Status : %#018lX", l_data64_loc_fi2c_status);
}

if(l_data32_srr0 != 0xDEADDEAD || l_data32_srr0 != 0x0)
if(l_data32_srr0 != 0xDEADDEAD && l_data32_srr0 != 0x0)
{
FAPI_INF("p9_extract_sbe_rc : Use SRR0 as IAR");
l_data32_iar = l_data32_srr0;
Expand Down

0 comments on commit 2271594

Please sign in to comment.