1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:07:45 +00:00

Kernel: Remove dead code from BlockDevice

This commit is contained in:
Tom 2020-11-01 13:43:02 -07:00 committed by Andreas Kling
parent 28b109688b
commit 96081010dc
2 changed files with 0 additions and 22 deletions

View file

@ -39,8 +39,6 @@ public:
bool read_block(unsigned index, UserOrKernelBuffer&) const;
bool write_block(unsigned index, const UserOrKernelBuffer&);
bool read_raw(u32 offset, unsigned length, UserOrKernelBuffer&) const;
bool write_raw(u32 offset, unsigned length, const UserOrKernelBuffer&);
virtual bool read_blocks(unsigned index, u16 count, UserOrKernelBuffer&) = 0;
virtual bool write_blocks(unsigned index, u16 count, const UserOrKernelBuffer&) = 0;