From d30086ed099f134544f9a1df001ee037aa452515 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 98cf4406..2fff8d1c 100644 --- a/src/arch/x86/arch_early_setup.c +++ b/src/arch/x86/arch_early_setup.c @@ -15,7 +15,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