1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:27:43 +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

@ -31,8 +31,6 @@ private:
virtual ErrorOr<size_t> read(OpenFileDescription&, u64, UserOrKernelBuffer&, size_t) override;
virtual ErrorOr<size_t> write(OpenFileDescription&, u64, const UserOrKernelBuffer&, size_t) override { return EINVAL; }
virtual void did_seek(OpenFileDescription&, off_t) override;
bool is_allowed_range(PhysicalAddress, Memory::VirtualRange const&) const;
};