Use ACPI text fields consistently with all other boards
[coreboot.git] / src / mainboard / lenovo / t60 / fadt.c
index 9f73f9cb4b075afdfe80487f6dce8b6053f0f4ad..3a984b1a00a8db8208a2b27f13cf3c4c5aa4e6f2 100644 (file)
@@ -38,9 +38,9 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
        memcpy(header->signature, "FACP", 4);
        header->length = sizeof(acpi_fadt_t);
        header->revision = 3;
-       memcpy(header->oem_id, "CORE  ", 6);
-       memcpy(header->oem_table_id, "COREBOOT", 8);
-       memcpy(header->asl_compiler_id, "CORE", 4);
+       memcpy(header->oem_id, OEM_ID, 6);
+       memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
+       memcpy(header->asl_compiler_id, ASLC, 4);
        header->asl_compiler_revision = 0;
 
        fadt->firmware_ctrl = (unsigned long) facs;