[kernel] Add BGRT ACPI table struct

This commit is contained in:
Justin C. Miller
2021-01-18 13:41:00 -08:00
parent 89391e5be1
commit 2a490a1bbc

View File

@@ -198,3 +198,14 @@ struct acpi_hpet
uint8_t attributes; uint8_t attributes;
} __attribute__ ((packed)); } __attribute__ ((packed));
struct acpi_bgrt
{
TABLE_HEADER('BGRT');
uint16_t version;
uint8_t status;
uint8_t type;
uintptr_t address;
uint32_t offset_x;
uint32_t offset_y;
} __attribute__ ((packed));