diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-30 10:56:29 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-30 10:56:29 +0200 |
| commit | 0e92d4841f0d1b6a5f2e1b093d9d0b6864dfac93 (patch) | |
| tree | 80b1bcc96d24a058a485c345b14402fdc6486e2a /dev/kernel/src/Storage/NVMEDeviceInterface.cc | |
| parent | 267b82036b457242325d30893280fdd4e74cd27f (diff) | |
refactor: Refactor IDeviceObject to DeviceInterface and its usages.
refactor: Cleanup UPS (UserProcessScheduler) implementation.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/kernel/src/Storage/NVMEDeviceInterface.cc')
| -rw-r--r-- | dev/kernel/src/Storage/NVMEDeviceInterface.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/kernel/src/Storage/NVMEDeviceInterface.cc b/dev/kernel/src/Storage/NVMEDeviceInterface.cc index cff776c9..bc138710 100644 --- a/dev/kernel/src/Storage/NVMEDeviceInterface.cc +++ b/dev/kernel/src/Storage/NVMEDeviceInterface.cc @@ -7,11 +7,11 @@ #include <StorageKit/NVME.h> namespace Kernel { -NVMEDeviceInterface::NVMEDeviceInterface(void (*out)(IDeviceObject*, +NVMEDeviceInterface::NVMEDeviceInterface(void (*out)(DeviceInterface*, MountpointInterface* outpacket), - void (*in)(IDeviceObject*, MountpointInterface* inpacket), + void (*in)(DeviceInterface*, MountpointInterface* inpacket), void (*cleanup)(void)) - : IDeviceObject(out, in), fCleanup(cleanup) {} + : DeviceInterface(out, in), fCleanup(cleanup) {} NVMEDeviceInterface::~NVMEDeviceInterface() { if (fCleanup) fCleanup(); |
