From d94ffac4a584dc7a4f6f2ec567b8caab05ce9253 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 6 May 2020 19:04:05 +0200 Subject: New build parameters and shared includes This changes many files but I've just applied some replace commands.. So - nothing special! --- src/kernel/smbios/smbios.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/kernel/smbios/smbios.h') diff --git a/src/kernel/smbios/smbios.h b/src/kernel/smbios/smbios.h index c6ce0d5..0df4b6d 100644 --- a/src/kernel/smbios/smbios.h +++ b/src/kernel/smbios/smbios.h @@ -2,15 +2,15 @@ #define MELVIX_SMBIOS_H #include -#include +#include struct smbios_0 { char *vendor; char *bios_version; - uint16_t bios_start; + u16 bios_start; char *bios_release_data; - uint8_t bios_size; - uint64_t bios_characteristics; + u8 bios_size; + u64 bios_characteristics; }; struct smbios_1 { @@ -18,8 +18,8 @@ struct smbios_1 { char *product_name; char *version; char *serial_number; - uint8_t uuid[16]; - uint8_t wakeup_type; + u8 uuid[16]; + u8 wakeup_type; }; void smbios_init(struct multiboot_tag_smbios *tag); -- cgit v1.2.3