diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-06-29 15:55:15 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-06-29 15:55:15 +0200 |
| commit | 1d9d0ba0f529e4b90875e459a841889495e45369 (patch) | |
| tree | e441c7af5da07f57ff7389ad81a05b4adce0ea7b /Kernel/KernelKit | |
| parent | d9d42bcfeb444652ae198a6bd3481ce316549e55 (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.hxx | 14 |
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__ */ |
