1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:58:11 +00:00

Kernel: Untangle StorageController from PCI::DeviceController

This commit is contained in:
Jean-Baptiste Boric 2021-01-18 21:40:47 +01:00 committed by Andreas Kling
parent 68c8b52612
commit 2f8b047339
3 changed files with 8 additions and 9 deletions

View file

@ -68,7 +68,8 @@ void IDEController::complete_current_request(AsyncDeviceRequest::RequestResult)
}
IDEController::IDEController(PCI::Address address, bool force_pio)
: StorageController(address)
: StorageController()
, PCI::DeviceController(address)
{
initialize(force_pio);
}