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/port.c | |
parent | edf86881446717b633dbb2aaac7b25dbc4630c3f (diff) |
Kernel: Remove unused syscalls
Diffstat (limited to 'kernel/syscalls/port.c')
-rw-r--r-- | kernel/syscalls/port.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/kernel/syscalls/port.c b/kernel/syscalls/port.c deleted file mode 100644 index 0a27a5e..0000000 --- a/kernel/syscalls/port.c +++ /dev/null @@ -1,14 +0,0 @@ -#include <syscalls.h> - -// FIXME: PERMISSION CHECKS -void syscall_outw(u16 port, u16 word) { - outw(port, word); -} - -void syscall_outl(u16 port, u32 l) { - outl(port, l); -} - -u32 syscall_inl(u16 port) { - return inl(port); -} |