aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/smbios/smbios.c
blob: 5e48ffa7a8582407f3964d22a331bbc3fc058057 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stddef.h>
#include <kernel/multiboot.h>
#include <kernel/system.h>
#include <kernel/smbios/smbios.h>

void smbios_init(struct multiboot_tag_smbios *tag) {
	log("%s", ((struct smbios_0 *)tag->tables)->vendor);
	return;
}