From 2bb31a768a5825ab5befb40f89c91afb4bf0660e Mon Sep 17 00:00:00 2001 From: Andrew Geissler Date: Wed, 24 Sep 2014 13:56:38 -0500 Subject: Fixed simple bug which caused us to lose istep errors. Change-Id: Ib16db7b2aac21dc1bc74549ee88c25a07291d7ca CQ: SW278912 Backport: release-fips820 Backport: release-fips811 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/13576 Reviewed-by: WILLIAM G. HOFFA Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III --- src/usr/hwpf/hwp/core_activate/core_activate.C | 3 +-- src/usr/hwpf/hwp/dram_training/dram_training.C | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/usr/hwpf/hwp/core_activate/core_activate.C b/src/usr/hwpf/hwp/core_activate/core_activate.C index 934345ef3..7b31fa25a 100644 --- a/src/usr/hwpf/hwp/core_activate/core_activate.C +++ b/src/usr/hwpf/hwp/core_activate/core_activate.C @@ -447,7 +447,6 @@ void* call_host_activate_slave_cores( void *io_pArgs ) "SLW is in clean state"); } } - // Create error log if (0 != rc) { @@ -558,7 +557,7 @@ void* call_host_activate_slave_cores( void *io_pArgs ) } } - if( !l_stepError.getErrorHandle() ) + if( l_stepError.isNull() ) { // Call proc_post_winkle TARGETING::TargetHandleList l_procTargetList; diff --git a/src/usr/hwpf/hwp/dram_training/dram_training.C b/src/usr/hwpf/hwp/dram_training/dram_training.C index 04f415ff9..a37f238d8 100644 --- a/src/usr/hwpf/hwp/dram_training/dram_training.C +++ b/src/usr/hwpf/hwp/dram_training/dram_training.C @@ -409,7 +409,7 @@ void* call_mss_scominit( void *io_pArgs ) "SUCCESS : mss_scominit HWP( )" ); } } - if (l_stepError.getErrorHandle()) + if (!l_stepError.isNull()) { break; } -- cgit v1.2.3