aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/smbios/smbios.c
blob: b99f83baf7fafb07a77ae90a27a5cf17e920a0b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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;
}