summaryrefslogtreecommitdiff
path: root/fs/fs.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/fs.c')
-rw-r--r--fs/fs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/fs.c b/fs/fs.c
index 0194358..03a522f 100644
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -1,3 +1,4 @@
+#include "kernel/kernel.h"
// abstraction layer for filesystems
#include "fs.h"
@@ -26,7 +27,7 @@ void fs_mount(multiboot_information *info)
multiboot_mod *mod=info->mods_addr;
for(int i=0;i<info->mods_count;i++)
{
- log(FOOLOS_MODULE_NAME,5,"mounting mod from 0x%08X-0x%08X : %s",
+ klog("mounting mod from 0x%08X-0x%08X : %s",
mod->mod_start,mod->mod_end, mod->string);
//pmmngr_deinit_region(mod->mod_start,((uint32_t)mod->mod_end-(uint32_t)mod->mod_start)+1);