diff options
Diffstat (limited to 'src/usr/vfs/vfsrp.C')
-rw-r--r-- | src/usr/vfs/vfsrp.C | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/usr/vfs/vfsrp.C b/src/usr/vfs/vfsrp.C index fde05d820..aaf4aa57d 100644 --- a/src/usr/vfs/vfsrp.C +++ b/src/usr/vfs/vfsrp.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2011,2018 */ +/* Contributors Listed Below - COPYRIGHT 2011,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -45,7 +45,6 @@ #include <secureboot/service.H> #include <secureboot/containerheader.H> #include <kernel/console.H> -#include <config.h> using namespace VFS; @@ -754,7 +753,7 @@ void VfsRp::get_test_modules(std::vector<const char *> & o_list) const VfsSystemModule * vfsItr = (VfsSystemModule *) (iv_pnor_vaddr + VFS_EXTENDED_MODULE_TABLE_OFFSET); - //TRACDCOMP(g_trac_vfs,"finding test modules..."); + TRACFCOMP(g_trac_vfs,"finding test modules..."); while(vfsItr->module[0] != '\0') { @@ -762,7 +761,7 @@ void VfsRp::get_test_modules(std::vector<const char *> & o_list) const { if (NULL != vfsItr->start) { - //TRACDCOMP( g_trac_vfs, "%s",vfsItr->module); + TRACDCOMP( g_trac_vfs, "%s",vfsItr->module); o_list.push_back(vfsItr->module); } } |