diff options
author | Liav A <liavalb@gmail.com> | 2023-03-18 13:32:12 +0200 |
---|---|---|
committer | Jelle Raaijmakers <jelle@gmta.nl> | 2023-06-02 11:04:37 +0200 |
commit | 500b7b08d6e65cf0cf5eb29eb7205c53aa30b52f (patch) | |
tree | 77b7da6389dd94fb36365b8142e928760567f54a /Userland/Libraries/LibPartition | |
parent | f3a58f3a5ab44be8af4de0496b55bc6a979d7b5a (diff) | |
download | serenity-500b7b08d6e65cf0cf5eb29eb7205c53aa30b52f.zip |
Kernel: Move the Storage directory to be a new directory under Devices
The Storage subsystem, like the Audio and HID subsystems, exposes Unix
device files (for example, in the /dev directory). To ensure consistency
across the repository, we should make the Storage subsystem to reside in
the Kernel/Devices directory like the two other mentioned subsystems.
Diffstat (limited to 'Userland/Libraries/LibPartition')
-rw-r--r-- | Userland/Libraries/LibPartition/PartitionTable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibPartition/PartitionTable.h b/Userland/Libraries/LibPartition/PartitionTable.h index cfe828491e..58590c6ced 100644 --- a/Userland/Libraries/LibPartition/PartitionTable.h +++ b/Userland/Libraries/LibPartition/PartitionTable.h @@ -10,7 +10,7 @@ #include <LibPartition/DiskPartitionMetadata.h> #ifdef KERNEL -# include <Kernel/Storage/StorageDevice.h> +# include <Kernel/Devices/Storage/StorageDevice.h> #else # include <LibCore/Forward.h> #endif |