The generic wrapper include/multiboot2.h only forwarded to
arch/x86/multiboot2.h under #if x86. Since Multiboot2 is purely
x86/GRUB-specific, the wrapper should not exist in the generic
include/ directory. pmm.c now includes arch/x86/multiboot2.h
directly (already inside its own #if x86 guard).
Passes: make, cppcheck, QEMU smoke test.
+++ /dev/null
-#ifndef MULTIBOOT2_H
-#define MULTIBOOT2_H
-
-#include <stdint.h>
-
-#if defined(__i386__) || defined(__x86_64__)
-#include "arch/x86/multiboot2.h"
-#endif
-#endif /* MULTIBOOT2_H */
#include "pmm.h"
#if defined(__i386__) || defined(__x86_64__)
-#include "multiboot2.h"
+#include "arch/x86/multiboot2.h"
#endif
#include "utils.h"
#include "uart_console.h"