diff options
author | Anton Kling <anton@kling.gg> | 2024-06-26 21:24:22 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-06-26 21:24:22 +0200 |
commit | 2e2f89c7508dede2c970e6061c2f66d4536162ca (patch) | |
tree | 63b7e2aaad1ecd1ed99b814fe967954f0687acfa /kernel/syscalls/virtual_to_physical.c | |
parent | edf86881446717b633dbb2aaac7b25dbc4630c3f (diff) |
Kernel: Remove unused syscalls
Diffstat (limited to 'kernel/syscalls/virtual_to_physical.c')
-rw-r--r-- | kernel/syscalls/virtual_to_physical.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/kernel/syscalls/virtual_to_physical.c b/kernel/syscalls/virtual_to_physical.c deleted file mode 100644 index e5b3eba..0000000 --- a/kernel/syscalls/virtual_to_physical.c +++ /dev/null @@ -1,6 +0,0 @@ -#include <mmu.h> -#include <syscalls.h> - -u32 syscall_virtual_to_physical(u32 virtual) { - return (u32)virtual_to_physical((void *)virtual, NULL); -} |