aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/lenovo/t60/acpi_tables.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/lenovo/t60/acpi_tables.c')
-rw-r--r--src/mainboard/lenovo/t60/acpi_tables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/lenovo/t60/acpi_tables.c b/src/mainboard/lenovo/t60/acpi_tables.c
index fa135a6e88..412ec47ed0 100644
--- a/src/mainboard/lenovo/t60/acpi_tables.c
+++ b/src/mainboard/lenovo/t60/acpi_tables.c
@@ -66,7 +66,7 @@ static void acpi_create_intel_hpet(acpi_hpet_t * hpet)
/* fill out header fields */
memcpy(header->signature, "HPET", 4);
memcpy(header->oem_id, OEM_ID, 6);
- memcpy(header->oem_table_id, "COREBOOT", 8);
+ memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
memcpy(header->asl_compiler_id, ASLC, 4);
header->length = sizeof(acpi_hpet_t);
@@ -287,7 +287,7 @@ unsigned long write_acpi_tables(unsigned long start)
printk(BIOS_DEBUG, "ACPI: * SSDT\n");
ssdt = (acpi_header_t *)current;
- acpi_create_ssdt_generator(ssdt, "COREBOOT");
+ acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
current += ssdt->length;
acpi_add_table(rsdp, ssdt);
ALIGN_CURRENT;