From 36dee4f0d8ea806b2f061ed66a89e812ab007ed2 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Mon, 22 Dec 2025 07:38:52 +0100 Subject: feat: test: Add `kout` test and rename DeviceInterface to IDevice in KernelKit. introduce UserPtr and unburden vettable by removing the IVettable helper. Signed-off-by: Amlal El Mahrouss --- src/kernel/StorageKit/SCSI.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/kernel/StorageKit/SCSI.h') diff --git a/src/kernel/StorageKit/SCSI.h b/src/kernel/StorageKit/SCSI.h index f31d36f0..3354a678 100644 --- a/src/kernel/StorageKit/SCSI.h +++ b/src/kernel/StorageKit/SCSI.h @@ -13,9 +13,8 @@ namespace Kernel { class SCSIDeviceInterface final NE_DEVICE { public: - explicit SCSIDeviceInterface(Void (*out)(DeviceInterface*, IMountpoint* out_packet), - Void (*in)(DeviceInterface*, IMountpoint* in_packet), - Void (*cleanup)(Void)); + explicit SCSIDeviceInterface(Void (*out)(IDevice*, IMountpoint* out_packet), + Void (*in)(IDevice*, IMountpoint* in_packet), Void (*cleanup)(Void)); ~SCSIDeviceInterface() override; -- cgit v1.2.3