aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/smbios/smbios.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/smbios/smbios.h')
-rw-r--r--src/kernel/smbios/smbios.h12
1 files changed, 6 insertions, 6 deletions
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 <stdint.h>
-#include <kernel/multiboot.h>
+#include <multiboot.h>
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);