diff --git a/Kernel/Storage/PATADiskDevice.cpp b/Kernel/Storage/PATADiskDevice.cpp index 8065585902..4236f88430 100644 --- a/Kernel/Storage/PATADiskDevice.cpp +++ b/Kernel/Storage/PATADiskDevice.cpp @@ -67,9 +67,7 @@ void PATADiskDevice::start_request(AsyncBlockDeviceRequest& request) String PATADiskDevice::device_name() const { - // FIXME: Try to not hardcode a maximum of 16 partitions per drive! - size_t drive_index = minor() / 16; - return String::formatted("hd{:c}{}", 'a' + drive_index, minor() + 1); + return String::formatted("hd{:c}", 'a' + minor()); } size_t PATADiskDevice::max_addressable_block() const