Skip to content

Commit

Permalink
Fixed NOT_ENOUGH_ENERGY_FOR_CSAVE check
Browse files Browse the repository at this point in the history
CQ:SW476011
Change-Id: I17c82bece187c216e29a7c0acb58a50c62c6e016
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/83800
Tested-by: Jenkins Server <pfd-jenkins+hostboot@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>
Reviewed-by: Corey V Swenson <cswenson@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
Matthickman14 authored and dcrowell77 committed Sep 27, 2019
1 parent 48abe5e commit 5db287b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/usr/isteps/nvdimm/nvdimmErrorLog.C
Expand Up @@ -1082,7 +1082,7 @@ errlHndl_t nvdimmHealthStatusCheck(Target *i_nvdimm, uint8_t i_step, bool& o_con
do
{
// If function calling is SAVE, ignore NOT_ENOUGH_ENERGY_FOR_CSAVE
if (i_step == HEALTH_SAVE)
if (i_step != HEALTH_SAVE)
{
// Check MODULE_HEALTH_STATUS1[0]
if ((l_RegInfo.Module_Health_Status1 & NOT_ENOUGH_ENERGY_FOR_CSAVE) == NOT_ENOUGH_ENERGY_FOR_CSAVE)
Expand Down

0 comments on commit 5db287b

Please sign in to comment.