diff options
Diffstat (limited to 'arch/x86_64')
| -rw-r--r-- | arch/x86_64/arch/cpu/control_register.hpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/arch/cpu/initialization.cpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/arch/cpu/interrupts.cpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/arch/cpu/model_specific_register.hpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/arch/devices/init.cpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/arch/devices/local_apic.cpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/arch/memory/kernel_mapper.cpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/arch/memory/page_table.hpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/kapi/boot_modules.cpp | 2 | ||||
| -rw-r--r-- | arch/x86_64/kapi/cpu.cpp | 4 | ||||
| -rw-r--r-- | arch/x86_64/kapi/memory.cpp | 4 |
11 files changed, 16 insertions, 16 deletions
diff --git a/arch/x86_64/arch/cpu/control_register.hpp b/arch/x86_64/arch/cpu/control_register.hpp index 9cedc35a..ad307081 100644 --- a/arch/x86_64/arch/cpu/control_register.hpp +++ b/arch/x86_64/arch/cpu/control_register.hpp @@ -5,7 +5,7 @@ #include <kapi/memory.hpp> -#include <kstd/ext/bitfield_enum> +#include <kstd/ext/bitfield_enum.hpp> #include <cstdint> #include <string_view> diff --git a/arch/x86_64/arch/cpu/initialization.cpp b/arch/x86_64/arch/cpu/initialization.cpp index 1be9c821..49870eb7 100644 --- a/arch/x86_64/arch/cpu/initialization.cpp +++ b/arch/x86_64/arch/cpu/initialization.cpp @@ -6,7 +6,7 @@ #include <arch/cpu/segment_descriptor.hpp> #include <arch/cpu/task_state_segment.hpp> -#include <kstd/print> +#include <kstd/print.hpp> #include <bit> #include <cstdint> diff --git a/arch/x86_64/arch/cpu/interrupts.cpp b/arch/x86_64/arch/cpu/interrupts.cpp index f40422fc..99186e2d 100644 --- a/arch/x86_64/arch/cpu/interrupts.cpp +++ b/arch/x86_64/arch/cpu/interrupts.cpp @@ -7,7 +7,7 @@ #include <kapi/interrupts.hpp> #include <kapi/memory.hpp> -#include <kstd/print> +#include <kstd/print.hpp> #include <cstdint> diff --git a/arch/x86_64/arch/cpu/model_specific_register.hpp b/arch/x86_64/arch/cpu/model_specific_register.hpp index bd4aff9d..cf07737f 100644 --- a/arch/x86_64/arch/cpu/model_specific_register.hpp +++ b/arch/x86_64/arch/cpu/model_specific_register.hpp @@ -3,7 +3,7 @@ // IWYU pragma: private, include <x86_64/cpu/registers.hpp> -#include <kstd/ext/bitfield_enum> +#include <kstd/ext/bitfield_enum.hpp> #include <bit> #include <cstdint> diff --git a/arch/x86_64/arch/devices/init.cpp b/arch/x86_64/arch/devices/init.cpp index c30e8cf0..134d6dac 100644 --- a/arch/x86_64/arch/devices/init.cpp +++ b/arch/x86_64/arch/devices/init.cpp @@ -10,8 +10,8 @@ #include <acpi/acpi.hpp> -#include <kstd/memory> -#include <kstd/print> +#include <kstd/memory.hpp> +#include <kstd/print.hpp> #include <cstdint> #include <utility> diff --git a/arch/x86_64/arch/devices/local_apic.cpp b/arch/x86_64/arch/devices/local_apic.cpp index 660921bd..b481a667 100644 --- a/arch/x86_64/arch/devices/local_apic.cpp +++ b/arch/x86_64/arch/devices/local_apic.cpp @@ -3,7 +3,7 @@ #include <kapi/devices.hpp> #include <kapi/memory.hpp> -#include <kstd/print> +#include <kstd/print.hpp> #include <cstddef> #include <cstdint> diff --git a/arch/x86_64/arch/memory/kernel_mapper.cpp b/arch/x86_64/arch/memory/kernel_mapper.cpp index 74272a0f..0ddf08dd 100644 --- a/arch/x86_64/arch/memory/kernel_mapper.cpp +++ b/arch/x86_64/arch/memory/kernel_mapper.cpp @@ -8,8 +8,8 @@ #include <elf/format.hpp> #include <elf/section_header.hpp> -#include <kstd/print> -#include <kstd/units> +#include <kstd/print.hpp> +#include <kstd/units.hpp> #include <multiboot2/information.hpp> diff --git a/arch/x86_64/arch/memory/page_table.hpp b/arch/x86_64/arch/memory/page_table.hpp index ce3d3a14..f288e3da 100644 --- a/arch/x86_64/arch/memory/page_table.hpp +++ b/arch/x86_64/arch/memory/page_table.hpp @@ -3,8 +3,8 @@ #include <kapi/memory.hpp> -#include <kstd/ext/bitfield_enum> -#include <kstd/units> +#include <kstd/ext/bitfield_enum.hpp> +#include <kstd/units.hpp> #include <array> #include <cstddef> diff --git a/arch/x86_64/kapi/boot_modules.cpp b/arch/x86_64/kapi/boot_modules.cpp index fb6bf465..9ca867a5 100644 --- a/arch/x86_64/kapi/boot_modules.cpp +++ b/arch/x86_64/kapi/boot_modules.cpp @@ -9,7 +9,7 @@ #include <kapi/memory.hpp> #include <kapi/system.hpp> -#include <kstd/print> +#include <kstd/print.hpp> #include <multiboot2/information.hpp> diff --git a/arch/x86_64/kapi/cpu.cpp b/arch/x86_64/kapi/cpu.cpp index 40dc2281..70cd3635 100644 --- a/arch/x86_64/kapi/cpu.cpp +++ b/arch/x86_64/kapi/cpu.cpp @@ -11,8 +11,8 @@ #include <acpi/acpi.hpp> -#include <kstd/memory> -#include <kstd/print> +#include <kstd/memory.hpp> +#include <kstd/print.hpp> #include <atomic> #include <ranges> diff --git a/arch/x86_64/kapi/memory.cpp b/arch/x86_64/kapi/memory.cpp index 5b870d51..a6f84f07 100644 --- a/arch/x86_64/kapi/memory.cpp +++ b/arch/x86_64/kapi/memory.cpp @@ -12,8 +12,8 @@ #include <kapi/boot.hpp> #include <kapi/system.hpp> -#include <kstd/print> -#include <kstd/units> +#include <kstd/print.hpp> +#include <kstd/units.hpp> #include <multiboot2/constants.hpp> #include <multiboot2/information.hpp> |
