1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:37:35 +00:00

Kernel/Storage: Rename DiskPartition => StorageDevicePartition

We deal with partitions for storage devices, not only for disk devices,
originally harddrives.
This commit is contained in:
Liav A 2023-06-30 08:59:58 +03:00 committed by Andrew Kaster
parent 4e651d0e4f
commit 42ed0a6c94
6 changed files with 28 additions and 28 deletions

View file

@ -8,10 +8,10 @@
#include <AK/IntrusiveList.h>
#include <AK/Types.h>
#include <Kernel/Devices/Storage/DiskPartition.h>
#include <Kernel/Devices/Storage/SD/SDHostController.h>
#include <Kernel/Devices/Storage/StorageController.h>
#include <Kernel/Devices/Storage/StorageDevice.h>
#include <Kernel/Devices/Storage/StorageDevicePartition.h>
#include <Kernel/FileSystem/FileSystem.h>
#include <Kernel/Library/NonnullLockRefPtr.h>
#include <LibPartition/PartitionTable.h>