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/GfxKit/FB.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/kernel/GfxKit') diff --git a/src/kernel/GfxKit/FB.h b/src/kernel/GfxKit/FB.h index c8a2dc4b..a55a3a5a 100644 --- a/src/kernel/GfxKit/FB.h +++ b/src/kernel/GfxKit/FB.h @@ -31,11 +31,11 @@ struct PACKED FBDevicePacket final { /// @brief Framebuffer device interface. /// @details This class is used to send and receive data from the framebuffer device. -/// @note The class is derived from the DeviceInterface class. +/// @note The class is derived from the IDevice class. class FBDeviceInterface NE_DEVICE { public: - explicit FBDeviceInterface(void (*out)(DeviceInterface* self, FBDevicePacket* out), - void (*in)(DeviceInterface* self, FBDevicePacket* in)); + explicit FBDeviceInterface(void (*out)(IDevice* self, FBDevicePacket* out), + void (*in)(IDevice* self, FBDevicePacket* in)); virtual ~FBDeviceInterface() override; -- cgit v1.2.3