1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:57:35 +00:00

Kernel: Remove needless did_seek method override in MemoryDevice class

This commit is contained in:
Liav A 2021-12-23 21:12:16 +02:00 committed by Idan Horowitz
parent 876559d283
commit 6feb07fe43
2 changed files with 0 additions and 7 deletions

View file

@ -36,11 +36,6 @@ ErrorOr<size_t> MemoryDevice::read(OpenFileDescription&, u64, UserOrKernelBuffer
TODO();
}
void MemoryDevice::did_seek(OpenFileDescription&, off_t)
{
TODO();
}
ErrorOr<Memory::Region*> MemoryDevice::mmap(Process& process, OpenFileDescription&, Memory::VirtualRange const& range, u64 offset, int prot, bool shared)
{
auto viewed_address = PhysicalAddress(offset);