diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-04-23 13:31:17 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-04-23 13:31:17 +0200 |
| commit | 2d8fed40bd0d0f8144783b6b344dc79944291b72 (patch) | |
| tree | 81e8f29078723e807ad6b32391a884136ec6dd14 /arch/x86_64/src/devices | |
| parent | dec3c3b0387ec477125db21e741bc492d3475db5 (diff) | |
| download | teachos-2d8fed40bd0d0f8144783b6b344dc79944291b72.tar.xz teachos-2d8fed40bd0d0f8144783b6b344dc79944291b72.zip | |
chore: organize includes
Diffstat (limited to 'arch/x86_64/src/devices')
| -rw-r--r-- | arch/x86_64/src/devices/init.cpp | 10 | ||||
| -rw-r--r-- | arch/x86_64/src/devices/legacy_pit.cpp | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/arch/x86_64/src/devices/init.cpp b/arch/x86_64/src/devices/init.cpp index 7f0faa4..8c96b38 100644 --- a/arch/x86_64/src/devices/init.cpp +++ b/arch/x86_64/src/devices/init.cpp @@ -1,18 +1,18 @@ #include "arch/devices/init.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 "arch/boot/boot.hpp" -#include "arch/bus/isa.hpp" -#include "arch/devices/legacy_pit.hpp" +#include <acpi/acpi.hpp> #include <kstd/memory> #include <kstd/print> -#include <acpi/acpi.hpp> - #include <cstdint> #include <utility> diff --git a/arch/x86_64/src/devices/legacy_pit.cpp b/arch/x86_64/src/devices/legacy_pit.cpp index a8df3c3..44ff499 100644 --- a/arch/x86_64/src/devices/legacy_pit.cpp +++ b/arch/x86_64/src/devices/legacy_pit.cpp @@ -1,11 +1,11 @@ #include "arch/devices/legacy_pit.hpp" +#include "arch/device_io/port_io.hpp" + #include "kapi/devices.hpp" #include "kapi/devices/device.hpp" #include "kapi/interrupts.hpp" -#include "arch/device_io/port_io.hpp" - #include <cstddef> #include <cstdint> |
