From 34f62ae2dd8c77cee1f0f3680caf407b1be6b350 Mon Sep 17 00:00:00 2001 From: Amlal Date: Sat, 22 Feb 2025 08:45:43 +0100 Subject: New DeviceMgr, other APIs have been reworked as a result. AHCI becomes the first module to be available in StorageKit. Signed-off-by: Amlal --- dev/Kernel/src/Storage/NVMEDeviceInterface.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dev/Kernel/src/Storage/NVMEDeviceInterface.cc') diff --git a/dev/Kernel/src/Storage/NVMEDeviceInterface.cc b/dev/Kernel/src/Storage/NVMEDeviceInterface.cc index 7884ce99..3e2c2c53 100644 --- a/dev/Kernel/src/Storage/NVMEDeviceInterface.cc +++ b/dev/Kernel/src/Storage/NVMEDeviceInterface.cc @@ -8,8 +8,8 @@ namespace NeOS { - NVMEDeviceInterface::NVMEDeviceInterface(void (*out)(MountpointInterface* outpacket), - void (*in)(MountpointInterface* inpacket), + NVMEDeviceInterface::NVMEDeviceInterface(void (*out)(IDeviceObject*, MountpointInterface* outpacket), + void (*in)(IDeviceObject*, MountpointInterface* inpacket), void (*cleanup)(void)) : IDeviceObject(out, in), fCleanup(cleanup) { @@ -23,6 +23,6 @@ namespace NeOS const Char* NVMEDeviceInterface::Name() const { - return ("NVMEDeviceInterface"); + return ("/dev/nvme{}"); } } // namespace NeOS -- cgit v1.2.3