From: Tulio A M Mendes Date: Tue, 10 Feb 2026 04:33:15 +0000 (-0300) Subject: refactor: x86 code uses arch-specific headers directly X-Git-Url: https://projects.tadryanom.me/sitemap.xml?a=commitdiff_plain;h=c68ce1577fc4101613b3c36a1958d1c216c09175;p=AdrOS.git 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. --- 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);