diff --git a/Kernel/Graphics/FramebufferDevice.cpp b/Kernel/Graphics/FramebufferDevice.cpp index 2882437f6e..ab3dbca7c4 100644 --- a/Kernel/Graphics/FramebufferDevice.cpp +++ b/Kernel/Graphics/FramebufferDevice.cpp @@ -59,6 +59,8 @@ ErrorOr FramebufferDevice::mmap(Process& process, OpenFileDescr "Framebuffer", prot, shared)); + if (auto result = m_userspace_framebuffer_region->set_write_combine(true); result.is_error()) + dbgln("FramebufferDevice: Failed to enable Write-Combine on Framebuffer: {}", result.error()); return m_userspace_framebuffer_region; }