summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/GfxKit
diff options
context:
space:
mode:
Diffstat (limited to 'dev/kernel/GfxKit')
-rw-r--r--dev/kernel/GfxKit/FB.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/dev/kernel/GfxKit/FB.h b/dev/kernel/GfxKit/FB.h
index 14f0393c..28f3a20c 100644
--- a/dev/kernel/GfxKit/FB.h
+++ b/dev/kernel/GfxKit/FB.h
@@ -6,8 +6,7 @@
#pragma once
-#include <modules/CoreGfx/CoreGfx.h>
-#include <modules/CoreGfx/TextGfx.h>
+#include <KernelKit/DeviceMgr.h>
namespace Kernel {
class FBDeviceInterface;
@@ -47,7 +46,7 @@ class FBDeviceInterface NE_DEVICE<FBDevicePacket*> {
const Char* Name() const override;
public:
- FBDeviceInterface& operator<<(FBDevicePacket* Data) override;
- FBDeviceInterface& operator>>(FBDevicePacket* Data) override;
+ FBDeviceInterface& operator<<(FBDevicePacket* dat) override;
+ FBDeviceInterface& operator>>(FBDevicePacket* dat) override;
};
} // namespace Kernel