summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/src/Storage/NVMEDeviceInterface.cc
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/src/Storage/NVMEDeviceInterface.cc')
-rw-r--r--dev/Kernel/src/Storage/NVMEDeviceInterface.cc28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev/Kernel/src/Storage/NVMEDeviceInterface.cc b/dev/Kernel/src/Storage/NVMEDeviceInterface.cc
deleted file mode 100644
index 3e2c2c53..00000000
--- a/dev/Kernel/src/Storage/NVMEDeviceInterface.cc
+++ /dev/null
@@ -1,28 +0,0 @@
-/* -------------------------------------------
-
- Copyright (C) 2024-2025, Amlal EL Mahrouss, all rights reserved.
-
-------------------------------------------- */
-
-#include <StorageKit/NVME.h>
-
-namespace NeOS
-{
- NVMEDeviceInterface::NVMEDeviceInterface(void (*out)(IDeviceObject*, MountpointInterface* outpacket),
- void (*in)(IDeviceObject*, MountpointInterface* inpacket),
- void (*cleanup)(void))
- : IDeviceObject(out, in), fCleanup(cleanup)
- {
- }
-
- NVMEDeviceInterface::~NVMEDeviceInterface()
- {
- if (fCleanup)
- fCleanup();
- }
-
- const Char* NVMEDeviceInterface::Name() const
- {
- return ("/dev/nvme{}");
- }
-} // namespace NeOS