aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/multiboot.c
diff options
context:
space:
mode:
authorMarvin Borner2020-05-13 21:28:56 +0200
committerMarvin Borner2020-05-13 22:12:41 +0200
commita9c7529dcca845d98192ece62be70f752972216b (patch)
tree666d49ceb411a669abe6191151b2238fd7156c30 /src/kernel/multiboot.c
parente1a6ed079303dc7d218f1d5326a13b6755781271 (diff)
Replaced alloc.h with liballoc
And many more adaptions to the lib
Diffstat (limited to 'src/kernel/multiboot.c')
-rw-r--r--src/kernel/multiboot.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kernel/multiboot.c b/src/kernel/multiboot.c
index af1a88b..f7ac876 100644
--- a/src/kernel/multiboot.c
+++ b/src/kernel/multiboot.c
@@ -13,7 +13,7 @@ void multiboot_parse(u32 multiboot_address)
for (tag = (struct multiboot_tag *)(multiboot_address + 8);
tag->type != MULTIBOOT_TAG_TYPE_END;
- tag = (struct multiboot_tag *)((multiboot_u8 *)tag + ((tag->size + 7) & ~7))) {
+ tag = (struct multiboot_tag *)((u8 *)tag + ((tag->size + 7) & ~7))) {
switch (tag->type) {
case MULTIBOOT_TAG_TYPE_CMDLINE:
// TODO: Add cmdline config support
@@ -28,14 +28,14 @@ void multiboot_parse(u32 multiboot_address)
break;
case MULTIBOOT_TAG_TYPE_BASIC_MEMINFO:
debug("Got memory info");
- memory_info_init((struct multiboot_tag_basic_meminfo *)tag);
+ /* memory_info_init((struct multiboot_tag_basic_meminfo *)tag); */
break;
case MULTIBOOT_TAG_TYPE_BOOTDEV:
debug("Got boot device");
break;
case MULTIBOOT_TAG_TYPE_MMAP:
debug("Got memory map");
- memory_mmap_init((struct multiboot_tag_mmap *)tag);
+ /* memory_mmap_init((struct multiboot_tag_mmap *)tag); */
break;
case MULTIBOOT_TAG_TYPE_VBE:
debug("Got VBE");