summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZane Shelley <zshelle@us.ibm.com>2019-09-30 09:39:59 -0500
committerZane C Shelley <zshelle@us.ibm.com>2019-10-01 20:36:51 -0500
commita23e7f84b6e6f5eb7ad68f9686eb46229bafed69 (patch)
treeac8e8487282dfd8d14d6a7c4e4cf994e99052268
parente1de8adbdb919358d53822ed6d0d01533c638dd1 (diff)
downloadtalos-hostboot-a23e7f84b6e6f5eb7ad68f9686eb46229bafed69.tar.gz
talos-hostboot-a23e7f84b6e6f5eb7ad68f9686eb46229bafed69.zip
PRD: boolean logic error in Axone chnl fail code
Change-Id: I34c98635fb6bc5ac600639474b2a91c7a4a5309c Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/84498 Reviewed-by: Caleb N Palmer <cnpalmer@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Zane C Shelley <zshelle@us.ibm.com> Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/84595 Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
-rwxr-xr-xsrc/usr/diag/prdf/common/plat/mem/prdfMemUtils.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/diag/prdf/common/plat/mem/prdfMemUtils.C b/src/usr/diag/prdf/common/plat/mem/prdfMemUtils.C
index 92fea4fdd..6914f9e92 100755
--- a/src/usr/diag/prdf/common/plat/mem/prdfMemUtils.C
+++ b/src/usr/diag/prdf/common/plat/mem/prdfMemUtils.C
@@ -1387,7 +1387,7 @@ bool __queryUcsOmic( ExtensibleChip * i_omic, ExtensibleChip * i_mcc,
uint8_t bitOff = omiPosRelOmic * 20;
// Check if there is a UNIT_CS for the relevant bits in the OMIDLFIR
- if ( fir->IsBitSet(bitOff) && ~mask->IsBitSet(bitOff) &&
+ if ( fir->IsBitSet(bitOff) && !mask->IsBitSet(bitOff) &&
act0->IsBitSet(bitOff) && act1->IsBitSet(bitOff) )
{
o_activeAttn = true;
OpenPOWER on IntegriCloud