diff options
Diffstat (limited to 'kernel/src/boot/tag.h')
-rw-r--r-- | kernel/src/boot/tag.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/src/boot/tag.h b/kernel/src/boot/tag.h index f9853e5..a81e443 100644 --- a/kernel/src/boot/tag.h +++ b/kernel/src/boot/tag.h @@ -4,7 +4,6 @@ #include <stdint.h> #include "acpi/acpi.h" -#include "graphics/framebuffer.h" #include "memory/memory.h" #define CMDLINE_MAX 32 @@ -15,7 +14,6 @@ struct BootTag { uint32_t size; union { char cmdline[CMDLINE_MAX]; - struct Framebuffer *framebuffer; struct MemoryMap *memory_map; struct RootSystemDescriptionPointer *rsdp; } data; @@ -30,7 +28,6 @@ struct BootInfo { enum BootTagID { ID_CMDLINE = 0, iD_MEMORYMAP = 6, - ID_FRAMEBUFFER = 8, ID_RSDP = 14 }; |