diff options
| author | Amlal <amlal@nekernel.org> | 2025-04-27 19:51:43 +0200 |
|---|---|---|
| committer | Amlal <amlal@nekernel.org> | 2025-04-27 19:51:43 +0200 |
| commit | 11dd858e1d9da71a182bc707ca3a481dafbccbe4 (patch) | |
| tree | 0b2ce000054b257e005199f31ac6a21a0eb5ffe5 /dev/kernel/StorageKit/ATA.h | |
| parent | cb2f383f45dda8d1cdcef0b87fe4c70243659701 (diff) | |
dev, kernel: refactor and improve parts of the kernel, related to I/O
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/StorageKit/ATA.h')
| -rw-r--r-- | dev/kernel/StorageKit/ATA.h | 4 |
1 files changed, 2 insertions, 2 deletions
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<MountpointInterface*> { /// @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<ATADeviceInterface> sk_acquire_pio_device(Int32 drv_index); +ErrorOr<ATADeviceInterface> sk_acquire_ata_device(Int32 drv_index); } // namespace Kernel |
