summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2021-07-08 20:30:13 +0300
committerAndreas Kling <kling@serenityos.org>2021-07-11 21:16:33 +0200
commitb882e5ff6b977e5f806e9295532b9b4f66eaeea5 (patch)
treed0cb518551414921f3672701292c191a9ae43ce3
parent9d36369c58ed50c2fae9da77bada3bca440b81fa (diff)
downloadserenity-b882e5ff6b977e5f806e9295532b9b4f66eaeea5.zip
Kernel/Graphics: Move Intel graphics related code to a separate folder
-rw-r--r--Kernel/CMakeLists.txt2
-rw-r--r--Kernel/Graphics/GraphicsManagement.cpp2
-rw-r--r--Kernel/Graphics/Intel/NativeGraphicsAdapter.cpp (renamed from Kernel/Graphics/IntelNativeGraphicsAdapter.cpp)2
-rw-r--r--Kernel/Graphics/Intel/NativeGraphicsAdapter.h (renamed from Kernel/Graphics/IntelNativeGraphicsAdapter.h)0
4 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt
index 7241ed58f2..c517ae6fab 100644
--- a/Kernel/CMakeLists.txt
+++ b/Kernel/CMakeLists.txt
@@ -70,7 +70,7 @@ set(KERNEL_SOURCES
Graphics/BochsGraphicsAdapter.cpp
Graphics/FramebufferDevice.cpp
Graphics/GraphicsManagement.cpp
- Graphics/IntelNativeGraphicsAdapter.cpp
+ Graphics/Intel/NativeGraphicsAdapter.cpp
Graphics/VirtIOGPU/VirtIOFrameBufferDevice.cpp
Graphics/VirtIOGPU/VirtIOGPUConsole.cpp
Graphics/VirtIOGPU/VirtIOGPU.cpp
diff --git a/Kernel/Graphics/GraphicsManagement.cpp b/Kernel/Graphics/GraphicsManagement.cpp
index c9500e7e6f..2689098fc8 100644
--- a/Kernel/Graphics/GraphicsManagement.cpp
+++ b/Kernel/Graphics/GraphicsManagement.cpp
@@ -12,7 +12,7 @@
#include <Kernel/Graphics/BochsGraphicsAdapter.h>
#include <Kernel/Graphics/Console/TextModeConsole.h>
#include <Kernel/Graphics/GraphicsManagement.h>
-#include <Kernel/Graphics/IntelNativeGraphicsAdapter.h>
+#include <Kernel/Graphics/Intel/NativeGraphicsAdapter.h>
#include <Kernel/Graphics/VGACompatibleAdapter.h>
#include <Kernel/Graphics/VirtIOGPU/VirtIOGraphicsAdapter.h>
#include <Kernel/IO.h>
diff --git a/Kernel/Graphics/IntelNativeGraphicsAdapter.cpp b/Kernel/Graphics/Intel/NativeGraphicsAdapter.cpp
index cf418279da..91879e91d4 100644
--- a/Kernel/Graphics/IntelNativeGraphicsAdapter.cpp
+++ b/Kernel/Graphics/Intel/NativeGraphicsAdapter.cpp
@@ -7,7 +7,7 @@
#include <Kernel/Graphics/Console/ContiguousFramebufferConsole.h>
#include <Kernel/Graphics/Definitions.h>
#include <Kernel/Graphics/GraphicsManagement.h>
-#include <Kernel/Graphics/IntelNativeGraphicsAdapter.h>
+#include <Kernel/Graphics/Intel/NativeGraphicsAdapter.h>
#include <Kernel/IO.h>
#include <Kernel/PhysicalAddress.h>
diff --git a/Kernel/Graphics/IntelNativeGraphicsAdapter.h b/Kernel/Graphics/Intel/NativeGraphicsAdapter.h
index 2cd87ad440..2cd87ad440 100644
--- a/Kernel/Graphics/IntelNativeGraphicsAdapter.h
+++ b/Kernel/Graphics/Intel/NativeGraphicsAdapter.h