diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2011-09-20 22:36:32 +0200 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2011-09-21 00:31:45 +0200 |
commit | 03f82bd787833db4c341a129a3329ea0aead6235 (patch) | |
tree | 820752b775cc2e980738f4dceb5835b03bf70fc9 /src/southbridge/nvidia/mcp55/fadt.c | |
parent | 8487229b91560935b5c829f47a7a44a0d91b2ea1 (diff) | |
download | coreboot-03f82bd787833db4c341a129a3329ea0aead6235.tar.xz |
Use ACPI text fields consistently with all other boards
LXBIOS and LXB-DSDT are not used in other parts of the tree.
Make names consistent across the tree.
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Change-Id: I91caeac09fd2401a36e53bd061d249b236a48e43
Reviewed-on: http://review.coreboot.org/224
Tested-by: build bot (Jenkins)
Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'src/southbridge/nvidia/mcp55/fadt.c')
-rw-r--r-- | src/southbridge/nvidia/mcp55/fadt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/southbridge/nvidia/mcp55/fadt.c b/src/southbridge/nvidia/mcp55/fadt.c index 753a663239..e69172a326 100644 --- a/src/southbridge/nvidia/mcp55/fadt.c +++ b/src/southbridge/nvidia/mcp55/fadt.c @@ -44,9 +44,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 = 1; - memcpy(header->oem_id, "GBT", 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 = 42; printk(BIOS_INFO, "ACPI: pm_base: %u...\n", pm_base); |