fix (acpi): fixed oem_id field in RSDP_v1 struct

This commit is contained in:
antifallobst 2023-03-11 11:04:47 +01:00
parent 606e4b619c
commit fedca7b7e4
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
typedef struct {
char signature [8];
uint8_t checksum;
char oem_id;
char oem_id [6];
uint8_t revision;
uint32_t rsdt_address;
} __attribute__((packed)) rsdp_descriptor_v1_T;