summaryrefslogtreecommitdiffstats
path: root/src/runtime/rt_vfs.C
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/rt_vfs.C')
-rw-r--r--src/runtime/rt_vfs.C22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/runtime/rt_vfs.C b/src/runtime/rt_vfs.C
index 7558f222c..894cd47cb 100644
--- a/src/runtime/rt_vfs.C
+++ b/src/runtime/rt_vfs.C
@@ -23,7 +23,6 @@
#include <runtime/interface.h>
#include <kernel/console.H>
#include <util/align.H>
-#include <kernel/console.H>
#include <sys/vfs.h>
#include <vector>
#include <errno.h>
@@ -102,24 +101,3 @@ void* vfs_start_entrypoint(VfsSystemModule * i_module)
}
return ptr;
}
-
-namespace VFS
-{
- void find_test_modules(std::vector<const char*> & o_list)
- {
- o_list.clear();
-
- for(VfsSystemModule* vfsItr = &VFS_MODULES[0];
- '\0' != vfsItr->module[0];
- vfsItr++)
- {
- if (0 == memcmp(vfsItr->module, "libtest", 7))
- {
- if (NULL != vfsItr->start)
- {
- o_list.push_back(vfsItr->module);
- }
- }
- }
- }
-}
OpenPOWER on IntegriCloud