summaryrefslogtreecommitdiffhomepage
path: root/dev/Kernel/Sources/Storage/NVMEDeviceInterface.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'dev/Kernel/Sources/Storage/NVMEDeviceInterface.cxx')
-rw-r--r--dev/Kernel/Sources/Storage/NVMEDeviceInterface.cxx28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev/Kernel/Sources/Storage/NVMEDeviceInterface.cxx b/dev/Kernel/Sources/Storage/NVMEDeviceInterface.cxx
deleted file mode 100644
index 7d07bf4b..00000000
--- a/dev/Kernel/Sources/Storage/NVMEDeviceInterface.cxx
+++ /dev/null
@@ -1,28 +0,0 @@
-/* -------------------------------------------
-
- Copyright ZKA Technologies.
-
-------------------------------------------- */
-
-#include <StorageKit/NVME.hxx>
-
-namespace Kernel
-{
- NVMEDeviceInterface::NVMEDeviceInterface(void (*Out)(MountpointInterface* outpacket),
- void (*In)(MountpointInterface* inpacket),
- void (*Cleanup)(void))
- : DeviceInterface(Out, In), fCleanup(Cleanup)
- {
- }
-
- NVMEDeviceInterface::~NVMEDeviceInterface()
- {
- if (fCleanup)
- fCleanup();
- }
-
- const char* NVMEDeviceInterface::Name() const
- {
- return ("NVMEDeviceInterface");
- }
-} // namespace Kernel