summaryrefslogtreecommitdiff
path: root/kernel/syscalls/map_frames.c
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2024-06-26 21:24:22 +0200
committerAnton Kling <anton@kling.gg>2024-06-26 21:24:22 +0200
commit2e2f89c7508dede2c970e6061c2f66d4536162ca (patch)
tree63b7e2aaad1ecd1ed99b814fe967954f0687acfa /kernel/syscalls/map_frames.c
parentedf86881446717b633dbb2aaac7b25dbc4630c3f (diff)
Kernel: Remove unused syscalls
Diffstat (limited to 'kernel/syscalls/map_frames.c')
-rw-r--r--kernel/syscalls/map_frames.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/kernel/syscalls/map_frames.c b/kernel/syscalls/map_frames.c
deleted file mode 100644
index 1b0d097..0000000
--- a/kernel/syscalls/map_frames.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <mmu.h>
-#include <syscalls.h>
-
-u32 syscall_map_frames(u32 address, u32 size) {
- return (u32)mmu_map_user_frames((void *)address, size);
-}