diff options
author | Liav A <liavalb@gmail.com> | 2021-11-13 10:19:31 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-13 10:05:22 +0100 |
commit | 4dc3617f3c1e35a8865fb1d26b2779959e6423fc (patch) | |
tree | 6d36ba5cfd62453d1b39158fbd6e9f8e5043bb1f /Kernel/Storage/StorageManagement.cpp | |
parent | 648a139af36d6803fbe0674d4c6d461f46564e84 (diff) | |
download | serenity-4dc3617f3c1e35a8865fb1d26b2779959e6423fc.zip |
Kernel/Storage: Move all ATA related code to a new subdirectory
Like what happened with the PCI and USB code, this feels like the right
thing to do because we can improve on the ATA capabilities and keep it
distinguished from the rest of the subsystem.
Diffstat (limited to 'Kernel/Storage/StorageManagement.cpp')
-rw-r--r-- | Kernel/Storage/StorageManagement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Storage/StorageManagement.cpp b/Kernel/Storage/StorageManagement.cpp index 9c1b6035a8..bed09b1f35 100644 --- a/Kernel/Storage/StorageManagement.cpp +++ b/Kernel/Storage/StorageManagement.cpp @@ -13,8 +13,8 @@ #include <Kernel/Devices/BlockDevice.h> #include <Kernel/FileSystem/Ext2FileSystem.h> #include <Kernel/Panic.h> -#include <Kernel/Storage/AHCIController.h> -#include <Kernel/Storage/IDEController.h> +#include <Kernel/Storage/ATA/AHCIController.h> +#include <Kernel/Storage/ATA/IDEController.h> #include <Kernel/Storage/Partition/EBRPartitionTable.h> #include <Kernel/Storage/Partition/GUIDPartitionTable.h> #include <Kernel/Storage/Partition/MBRPartitionTable.h> |