diff options
author | dzwdz | 2022-05-05 22:47:12 +0200 |
---|---|---|
committer | dzwdz | 2022-05-05 22:47:12 +0200 |
commit | a40063321e8fbf4d82f46471221062bfa393604a (patch) | |
tree | df4bb43830c0f94f90738d841b5caeb72922cda6 /src/kernel/vfs/root.h | |
parent | 9900cc737988f25db30b5876f066a78e73389205 (diff) |
kernel: each driver registers its own mounts
Diffstat (limited to 'src/kernel/vfs/root.h')
-rw-r--r-- | src/kernel/vfs/root.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/kernel/vfs/root.h b/src/kernel/vfs/root.h index 3db958d..dd72202 100644 --- a/src/kernel/vfs/root.h +++ b/src/kernel/vfs/root.h @@ -1,5 +1,2 @@ #pragma once -#include <kernel/vfs/request.h> - -void vfs_root_accept(struct vfs_request *); -bool vfs_root_ready(struct vfs_backend *); +void vfs_root_init(void); |