aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/src/devices
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@ost.ch>2026-04-23 14:03:28 +0200
committerFelix Morgner <felix.morgner@ost.ch>2026-04-23 14:15:18 +0200
commitf6f10575f75ac23d06e1d94f7861611503daa7af (patch)
tree23c93eb6d63aac78cbe6c2b1b190665c1530e0dd /arch/x86_64/src/devices
parent2d8fed40bd0d0f8144783b6b344dc79944291b72 (diff)
downloadteachos-f6f10575f75ac23d06e1d94f7861611503daa7af.tar.xz
teachos-f6f10575f75ac23d06e1d94f7861611503daa7af.zip
chore: banish relative includes
Diffstat (limited to 'arch/x86_64/src/devices')
-rw-r--r--arch/x86_64/src/devices/init.cpp14
-rw-r--r--arch/x86_64/src/devices/legacy_pit.cpp10
-rw-r--r--arch/x86_64/src/devices/local_apic.cpp6
3 files changed, 15 insertions, 15 deletions
diff --git a/arch/x86_64/src/devices/init.cpp b/arch/x86_64/src/devices/init.cpp
index 8c96b38..c30e8cf 100644
--- a/arch/x86_64/src/devices/init.cpp
+++ b/arch/x86_64/src/devices/init.cpp
@@ -1,12 +1,12 @@
-#include "arch/devices/init.hpp"
+#include <arch/devices/init.hpp>
-#include "arch/boot/boot.hpp"
-#include "arch/bus/isa.hpp"
-#include "arch/devices/legacy_pit.hpp"
+#include <arch/boot/boot.hpp>
+#include <arch/bus/isa.hpp>
+#include <arch/devices/legacy_pit.hpp>
-#include "kapi/acpi.hpp"
-#include "kapi/cpu.hpp"
-#include "kapi/devices.hpp"
+#include <kapi/acpi.hpp>
+#include <kapi/cpu.hpp>
+#include <kapi/devices.hpp>
#include <acpi/acpi.hpp>
diff --git a/arch/x86_64/src/devices/legacy_pit.cpp b/arch/x86_64/src/devices/legacy_pit.cpp
index 44ff499..d542d47 100644
--- a/arch/x86_64/src/devices/legacy_pit.cpp
+++ b/arch/x86_64/src/devices/legacy_pit.cpp
@@ -1,10 +1,10 @@
-#include "arch/devices/legacy_pit.hpp"
+#include <arch/devices/legacy_pit.hpp>
-#include "arch/device_io/port_io.hpp"
+#include <arch/device_io/port_io.hpp>
-#include "kapi/devices.hpp"
-#include "kapi/devices/device.hpp"
-#include "kapi/interrupts.hpp"
+#include <kapi/devices.hpp>
+#include <kapi/devices/device.hpp>
+#include <kapi/interrupts.hpp>
#include <cstddef>
#include <cstdint>
diff --git a/arch/x86_64/src/devices/local_apic.cpp b/arch/x86_64/src/devices/local_apic.cpp
index 4a81de8..660921b 100644
--- a/arch/x86_64/src/devices/local_apic.cpp
+++ b/arch/x86_64/src/devices/local_apic.cpp
@@ -1,7 +1,7 @@
-#include "arch/devices/local_apic.hpp"
+#include <arch/devices/local_apic.hpp>
-#include "kapi/devices.hpp"
-#include "kapi/memory.hpp"
+#include <kapi/devices.hpp>
+#include <kapi/memory.hpp>
#include <kstd/print>