diff options
author | Marvin Borner | 2020-04-24 20:44:36 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-24 20:44:36 +0200 |
commit | 24175ce2a37d6f5d9ba367f942fabce681ee9e4a (patch) | |
tree | 829c4f13f8283298207b86b6a339763a10d3c521 /src/kernel/fs/ext2.h | |
parent | cd1d0115f0b873e155a2435f932f3f2865d72ce9 (diff) |
Removed vfs again...
Diffstat (limited to 'src/kernel/fs/ext2.h')
-rw-r--r-- | src/kernel/fs/ext2.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/kernel/fs/ext2.h b/src/kernel/fs/ext2.h index 065b04b..f9c977c 100644 --- a/src/kernel/fs/ext2.h +++ b/src/kernel/fs/ext2.h @@ -4,7 +4,6 @@ #include <stdint.h> #include <stddef.h> #include <stdbool.h> -#include <kernel/fs/vfs.h> #define ROOT_INODE 2 @@ -138,6 +137,4 @@ bool ext2_next_dirent(struct ext2_file *file, struct ext2_dirent *dir); uint32_t ext2_find_in_dir(uint32_t dir_inode, const char *name); uint32_t ext2_look_up_path(char *path); -void ext2_mount(struct fs_node *mountpoint); - -#endif
\ No newline at end of file +#endif |