Kernel: Add ioctl to get the EDID from a framebuffer

This commit is contained in:
Tom 2021-12-31 22:02:55 -07:00 committed by Linus Groh
commit 03c45b1865
Notes: sideshowbarker 2024-07-17 20:21:28 +09:00
20 changed files with 265 additions and 84 deletions

View file

@ -80,4 +80,9 @@ bool VGACompatibleAdapter::set_y_offset(size_t, size_t)
return false;
}
ErrorOr<ByteBuffer> VGACompatibleAdapter::get_edid(size_t) const
{
return Error::from_errno(ENOTSUP);
}
}