Skip to content

Commit

Permalink
Remove unimplemented multiboot2 tag warning
Browse files Browse the repository at this point in the history
  • Loading branch information
valtyr committed Jun 26, 2021
1 parent 6761759 commit e24d37b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/impl/kernel/multiboot2.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ void Multiboot2GetSystemInfo(u32 magic, void *responseAddress, MultibootInfo *sy
// *(u8*) (responsePointer + 27) = 0;
break;
default:
BIOSPrintf("Multiboot tag of type %s (%d) not handled.\n", tagNames[type], type);
// Use when implementing new tags
// BIOSPrintf("Multiboot tag of type %s (%d) not handled.\n", tagNames[type], type);
break;
}

Expand Down

0 comments on commit e24d37b

Please sign in to comment.