From 1d9d0ba0f529e4b90875e459a841889495e45369 Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Sat, 29 Jun 2024 15:55:15 +0200 Subject: DM: Add prefix 'io_' for drive manager functions. Signed-off-by: Amlal EL Mahrouss --- Kernel/KernelKit/DriveManager.hxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Kernel/KernelKit') 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__ */ -- cgit v1.2.3