Skip to content

Commit

Permalink
PRD: Fix getBadDqBitmap check for dimm
Browse files Browse the repository at this point in the history
Change-Id: Ia88da88269919a36a0d4859b2226034f411dc35d
CQ: SW455555
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/71098
Reviewed-by: Brian J. Stegmiller <bjs@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/71148
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>
  • Loading branch information
cnpalmer authored and zane131 committed Feb 4, 2019
1 parent 5e78ec8 commit 4802d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/usr/diag/prdf/common/plat/prdfPlatServices_common.C
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ uint32_t __getBadDqBitmap( TargetHandle_t i_trgt, const MemRank & i_rank,
for ( uint32_t ps = 0; ps < MAX_MEM_PORT; ps++ )
{
// Skip if the DIMM doesn't exist
if ( nullptr != getConnectedDimm(i_trgt, i_rank, ps) ) continue;
if ( nullptr == getConnectedDimm(i_trgt, i_rank, ps) ) continue;

errlHndl_t errl = nullptr;

Expand Down

0 comments on commit 4802d40

Please sign in to comment.