diff options
author | Liav A <liavalb@gmail.com> | 2021-08-21 06:58:43 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-23 01:07:45 +0200 |
commit | aacb1f0bf4c82569c7896930436f3bbd216fed67 (patch) | |
tree | 1d87e46b3e7060e4a1d8444fbe26853884f33451 /Kernel/Storage/IDEController.cpp | |
parent | 7b9c3439ec1d4d0c2122897fdfeb72fe52814d7a (diff) | |
download | serenity-aacb1f0bf4c82569c7896930436f3bbd216fed67.zip |
Kernel: Rename PCI::DeviceController => PCI::Device
Now that the old PCI::Device was removed, we can complete the PCI
changes by making the PCI::DeviceController to be named PCI::Device.
Really the entire purpose and the distinction between the two was about
interrupts, but since this is no longer a problem, just rename it to
simplify things further.
Diffstat (limited to 'Kernel/Storage/IDEController.cpp')
-rw-r--r-- | Kernel/Storage/IDEController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Storage/IDEController.cpp b/Kernel/Storage/IDEController.cpp index b0412b14d5..6471996a94 100644 --- a/Kernel/Storage/IDEController.cpp +++ b/Kernel/Storage/IDEController.cpp @@ -52,7 +52,7 @@ void IDEController::complete_current_request(AsyncDeviceRequest::RequestResult) UNMAP_AFTER_INIT IDEController::IDEController(PCI::Address address, bool force_pio) : StorageController() - , PCI::DeviceController(address) + , PCI::Device(address) { PCI::enable_io_space(address); PCI::enable_memory_space(address); |