summaryrefslogtreecommitdiffstats
path: root/src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C
diff options
context:
space:
mode:
authorBill Schwartz <whs@us.ibm.com>2012-10-10 10:36:29 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2012-10-12 16:29:17 -0500
commitb201169eeae76a7697f4f207dd583d40a2f07f66 (patch)
treea05fa3da99dddab0491623aebc1110e73d430bf7 /src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C
parent3536e96bd3a1d490cec900617fab6703fb7798ea (diff)
downloadtalos-hostboot-b201169eeae76a7697f4f207dd583d40a2f07f66.tar.gz
talos-hostboot-b201169eeae76a7697f4f207dd583d40a2f07f66.zip
Memory Leak task_end
Change-Id: Idb7a2d8d72a55f644efd0b2548eca5df5d062e6d RTC: 47491 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/2011 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C')
-rw-r--r--src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C b/src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C
index 59aaa21ae..24f877902 100644
--- a/src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C
+++ b/src/usr/hwpf/hwp/nest_chiplets/nest_chiplets.C
@@ -77,7 +77,7 @@ using namespace fapi;
// Wrapper function to call 07.1 :
// proc_a_x_pci_dmi_pll_setup
//
-void call_proc_a_x_pci_dmi_pll_setup( void *io_pArgs )
+void* call_proc_a_x_pci_dmi_pll_setup( void *io_pArgs )
{
errlHndl_t l_err = NULL;
TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "call_proc_a_x_pci_dmi_pll_setup entry" );
@@ -89,7 +89,7 @@ void call_proc_a_x_pci_dmi_pll_setup( void *io_pArgs )
TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
"WARNING: proc_a_x_pci_dmi_pll_setup HWP is disabled in SIMICS run!");
// end task
- task_end2( l_err );
+ return l_err ;
}
uint8_t l_cpuNum = 0;
@@ -156,7 +156,7 @@ void call_proc_a_x_pci_dmi_pll_setup( void *io_pArgs )
TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "call_proc_a_x_pci_dmi_pll_setup exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_err );
+ return l_err;
}
@@ -165,7 +165,7 @@ void call_proc_a_x_pci_dmi_pll_setup( void *io_pArgs )
// Wrapper function to call 07.2 :
// proc_startclock_chiplets
//
-void call_proc_startclock_chiplets( void *io_pArgs )
+void* call_proc_startclock_chiplets( void *io_pArgs )
{
errlHndl_t l_err = NULL;
@@ -212,7 +212,7 @@ void call_proc_startclock_chiplets( void *io_pArgs )
TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "call_proc_startclock_chiplets exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_err );
+ return l_err;
}
@@ -220,7 +220,7 @@ void call_proc_startclock_chiplets( void *io_pArgs )
// Wrapper function to call 07.3 :
// proc_chiplet_scominit
//
-void call_proc_chiplet_scominit( void *io_pArgs )
+void* call_proc_chiplet_scominit( void *io_pArgs )
{
errlHndl_t l_err = NULL;
@@ -230,7 +230,7 @@ void call_proc_chiplet_scominit( void *io_pArgs )
TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "call_proc_chiplet_scominit exit" );
- task_end2( l_err );
+ return l_err;
}
@@ -238,7 +238,7 @@ void call_proc_chiplet_scominit( void *io_pArgs )
// Wrapper function to call 07.4 :
// proc_pcie_scominit
//
-void call_proc_pcie_scominit( void *io_pArgs )
+void* call_proc_pcie_scominit( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -292,7 +292,7 @@ void call_proc_pcie_scominit( void *io_pArgs )
TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "call_proc_pcie_scominit exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
@@ -301,7 +301,7 @@ void call_proc_pcie_scominit( void *io_pArgs )
// Wrapper function to call 07.5 :
// proc_scomoverride_chiplets
//
-void call_proc_scomoverride_chiplets( void *io_pArgs )
+void* call_proc_scomoverride_chiplets( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -323,7 +323,7 @@ void call_proc_scomoverride_chiplets( void *io_pArgs )
TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "call_proc_scomoverride_chiplets exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
OpenPOWER on IntegriCloud