From c68ce1577fc4101613b3c36a1958d1c216c09175 Mon Sep 17 00:00:00 2001 From: Tulio A M Mendes Date: Tue, 10 Feb 2026 01:33:15 -0300 Subject: [PATCH] refactor: x86 code uses arch-specific headers directly arch_early_setup.c now includes arch/x86/multiboot2.h directly instead of the generic wrapper, consistent with the pattern of x86-only code using arch-specific headers. Passes: make, cppcheck, QEMU smoke test. --- src/arch/x86/arch_early_setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/x86/arch_early_setup.c b/src/arch/x86/arch_early_setup.c index 346b981..22a7b74 100644 --- a/src/arch/x86/arch_early_setup.c +++ b/src/arch/x86/arch_early_setup.c @@ -6,7 +6,7 @@ #include "arch/x86/idt.h" #include "uart_console.h" -#include "multiboot2.h" +#include "arch/x86/multiboot2.h" extern void kernel_main(const struct boot_info* bi); -- 2.43.0