diff options
author | Liav A <liavalb@gmail.com> | 2022-04-30 15:27:42 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-05-05 20:55:57 +0200 |
commit | e301af8352c50dc76234aa767d5a18f6ff52d86e (patch) | |
tree | 668053495c06812b151f56836b8ecead7e07caeb /Userland/DevTools/UserspaceEmulator | |
parent | aad968cc5e099bfa480c3cd67af5ef092b1b15f3 (diff) | |
download | serenity-e301af8352c50dc76234aa767d5a18f6ff52d86e.zip |
Everywhere: Purge all support and usage of framebuffer devices
Long live the DisplayConnector object!
Diffstat (limited to 'Userland/DevTools/UserspaceEmulator')
-rw-r--r-- | Userland/DevTools/UserspaceEmulator/Emulator_syscalls.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Userland/DevTools/UserspaceEmulator/Emulator_syscalls.cpp b/Userland/DevTools/UserspaceEmulator/Emulator_syscalls.cpp index a663453c0c..8d42441ef5 100644 --- a/Userland/DevTools/UserspaceEmulator/Emulator_syscalls.cpp +++ b/Userland/DevTools/UserspaceEmulator/Emulator_syscalls.cpp @@ -1165,13 +1165,6 @@ int Emulator::virt$ioctl([[maybe_unused]] int fd, unsigned request, [[maybe_unus mmu().copy_to_vm(arg, &size, sizeof(size)); return rc; } - case GRAPHICS_IOCTL_SET_HEAD_RESOLUTION: { - FBHeadResolution user_resolution; - mmu().copy_from_vm(&user_resolution, arg, sizeof(user_resolution)); - auto rc = syscall(SC_ioctl, fd, request, &user_resolution); - mmu().copy_to_vm(arg, &user_resolution, sizeof(user_resolution)); - return rc; - } case GRAPHICS_IOCTL_SET_HEAD_VERTICAL_OFFSET_BUFFER: return syscall(SC_ioctl, fd, request, arg); case FIONBIO: { |