summaryrefslogtreecommitdiffhomepage
path: root/Kernel/KernelKit
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-06-29 15:55:15 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-06-29 15:55:15 +0200
commit1d9d0ba0f529e4b90875e459a841889495e45369 (patch)
treee441c7af5da07f57ff7389ad81a05b4adce0ea7b /Kernel/KernelKit
parentd9d42bcfeb444652ae198a6bd3481ce316549e55 (diff)
DM: Add prefix 'io_' for drive manager functions.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Kernel/KernelKit')
-rw-r--r--Kernel/KernelKit/DriveManager.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/Kernel/KernelKit/DriveManager.hxx b/Kernel/KernelKit/DriveManager.hxx
index d4ccb50f..47ecba67 100644
--- a/Kernel/KernelKit/DriveManager.hxx
+++ b/Kernel/KernelKit/DriveManager.hxx
@@ -130,20 +130,20 @@ namespace NewOS
/// @brief Unimplemented drive.
/// @param pckt
/// @return
- Void ke_drv_unimplemented(DriveTrait::DrivePacket* pckt);
+ Void io_drv_unimplemented(DriveTrait::DrivePacket* pckt);
/// @brief Gets the drive kind (ATA, SCSI, AHCI...)
/// @param
- /// @return
- const Char* ke_drive_kind(Void);
+ /// @return the drive kind (ATA, Flash, NVM)
+ const Char* io_drive_kind(Void);
/// @brief Makes a new drive.
- /// @return the new drive.
- DriveTrait construct_drive(void) noexcept;
+ /// @return the new drive as a trait.
+ DriveTrait io_construct_drive(void) noexcept;
/// @brief Fetches the main drive.
- /// @return the new drive.
- DriveTrait construct_main_drive(void) noexcept;
+ /// @return the new drive as a trait.
+ DriveTrait io_construct_main_drive(void) noexcept;
} // namespace NewOS
#endif /* ifndef __INC_DRIVE_MANAGER_HXX__ */