From 11dd858e1d9da71a182bc707ca3a481dafbccbe4 Mon Sep 17 00:00:00 2001 From: Amlal Date: Sun, 27 Apr 2025 19:51:43 +0200 Subject: dev, kernel: refactor and improve parts of the kernel, related to I/O Signed-off-by: Amlal --- dev/kernel/StorageKit/ATA.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/kernel/StorageKit/ATA.h') diff --git a/dev/kernel/StorageKit/ATA.h b/dev/kernel/StorageKit/ATA.h index d2950228..5887c579 100644 --- a/dev/kernel/StorageKit/ATA.h +++ b/dev/kernel/StorageKit/ATA.h @@ -47,10 +47,10 @@ class ATADeviceInterface : public IDeviceObject { /// @brief Initialize an PIO device (StorageKit function) /// @param is_master is the current PIO master? /// @return [io:master] for PIO device. -BOOL sk_init_pio_device(BOOL is_master, UInt16& io, UInt8& master); +BOOL sk_init_ata_device(BOOL is_master, UInt16& io, UInt8& master); /// @brief Acquires a new PIO device with drv_index in mind. /// @param drv_index The drive index to assign. /// @return A wrapped device interface if successful, or error code. -ErrorOr sk_acquire_pio_device(Int32 drv_index); +ErrorOr sk_acquire_ata_device(Int32 drv_index); } // namespace Kernel -- cgit v1.2.3