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
commit 2f8b047339
Notes: sideshowbarker 2024-07-18 22:58:04 +09:00
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);
}