summaryrefslogtreecommitdiff
path: root/Kernel/Graphics/Console
diff options
context:
space:
mode:
authorHendiadyoin1 <leon2002.la@gmail.com>2021-06-22 17:40:16 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-24 00:38:23 +0200
commit62f9377656a18bcca1b1616f43dc3ba85dedd8c0 (patch)
treec7026c4d994088e332d8c1021481336f51ebbf35 /Kernel/Graphics/Console
parent925be2758ec5d2bce226a5284dd8960b7bd3f09a (diff)
downloadserenity-62f9377656a18bcca1b1616f43dc3ba85dedd8c0.zip
Kernel: Move special sections into Sections.h
This also removes a lot of CPU.h includes infavor for Sections.h
Diffstat (limited to 'Kernel/Graphics/Console')
-rw-r--r--Kernel/Graphics/Console/TextModeConsole.cpp1
-rw-r--r--Kernel/Graphics/Console/VGAConsole.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/Graphics/Console/TextModeConsole.cpp b/Kernel/Graphics/Console/TextModeConsole.cpp
index 25bce279c9..2739ba4c7e 100644
--- a/Kernel/Graphics/Console/TextModeConsole.cpp
+++ b/Kernel/Graphics/Console/TextModeConsole.cpp
@@ -7,6 +7,7 @@
#include <Kernel/Graphics/Console/TextModeConsole.h>
#include <Kernel/Graphics/GraphicsManagement.h>
#include <Kernel/IO.h>
+#include <Kernel/Sections.h>
namespace Kernel::Graphics {
diff --git a/Kernel/Graphics/Console/VGAConsole.cpp b/Kernel/Graphics/Console/VGAConsole.cpp
index 70472b55e7..73bcabb7e2 100644
--- a/Kernel/Graphics/Console/VGAConsole.cpp
+++ b/Kernel/Graphics/Console/VGAConsole.cpp
@@ -5,6 +5,7 @@
*/
#include <Kernel/Graphics/Console/VGAConsole.h>
+#include <Kernel/Sections.h>
namespace Kernel::Graphics {