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.cc6
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();