diff options
| author | Prachi Gupta <pragupta@us.ibm.com> | 2015-12-03 21:06:14 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2015-12-09 17:48:41 -0600 |
| commit | 156c3958175c6c07b1b07d56b50ac4e043bb4647 (patch) | |
| tree | c37667e2443c0469907c20e7957ab1646db4a3b6 /src/usr/hwpf | |
| parent | b3e68cd17927d7bbccb33320270b494a828919a0 (diff) | |
| download | blackbird-hostboot-156c3958175c6c07b1b07d56b50ac4e043bb4647.tar.gz blackbird-hostboot-156c3958175c6c07b1b07d56b50ac4e043bb4647.zip | |
Fix module_unload in dram_initialization
Change-Id: I84a73cbdfb29b37a9a8e158fe33fc929e2b54c4f
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/22447
Tested-by: Jenkins Server
Tested-by: Jenkins OP Build CI
Tested-by: Jenkins OP HW
Tested-by: FSP CI Jenkins
Reviewed-by: STEPHEN M. CPREK <smcprek@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf')
| -rw-r--r-- | src/usr/hwpf/hwp/dram_initialization/dram_initialization.C | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/hwpf/hwp/dram_initialization/dram_initialization.C b/src/usr/hwpf/hwp/dram_initialization/dram_initialization.C index 70f402f31..970286666 100644 --- a/src/usr/hwpf/hwp/dram_initialization/dram_initialization.C +++ b/src/usr/hwpf/hwp/dram_initialization/dram_initialization.C @@ -1170,14 +1170,14 @@ void* call_host_mpipl_service( void *io_pArgs ) } - // Need to unload the dump module regardless of whether we have + // Need to unload the runtime module regardless of whether we have // an error or not. - errlHndl_t l_errUnLoad = VFS::module_unload( "libdump.so" ); + errlHndl_t l_errUnLoad = VFS::module_unload( "libruntime.so" ); if (l_errUnLoad) { TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace, - "ERROR : returned from VFS::module_unload (libdump.so)" ); + "ERROR : returned from VFS::module_unload (libruntime.so)" ); errlCommit( l_errUnLoad, HWPF_COMP_ID ); } @@ -1186,7 +1186,7 @@ void* call_host_mpipl_service( void *io_pArgs ) else { TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace, - "ERROR : returned from VFS::module_load (libdump.so)" ); + "ERROR : returned from VFS::module_load (libruntime.so)" ); } } |

