mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 11:25:08 +00:00
Kernel: Move DiskDevice::block_size() up to BlockDevice
All block devices should have a block size, after all. This defaults to PAGE_SIZE if no size is specified.
This commit is contained in:
parent
52366e3f02
commit
5de483cfbb
11 changed files with 23 additions and 45 deletions
|
@ -1,7 +1,7 @@
|
|||
#include <Kernel/Devices/DiskDevice.h>
|
||||
|
||||
DiskDevice::DiskDevice(int major, int minor)
|
||||
: BlockDevice(major, minor)
|
||||
DiskDevice::DiskDevice(int major, int minor, size_t block_size)
|
||||
: BlockDevice(major, minor, block_size)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue