summaryrefslogtreecommitdiffstats
path: root/src/mainboard/amd/serengeti_cheetah_fam10/fadt.c
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2012-09-06 12:13:43 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2012-11-09 19:03:45 +0100
commitfa66eaefc2c1ef11e97ae638125f42c3044fe024 (patch)
treeade88ba914824719772260d8bbd1864fcfaa33ea /src/mainboard/amd/serengeti_cheetah_fam10/fadt.c
parentbceaf7fea0e8201653e62e0f6f18fb845baea219 (diff)
downloadcoreboot-fa66eaefc2c1ef11e97ae638125f42c3044fe024.tar.gz
coreboot-fa66eaefc2c1ef11e97ae638125f42c3044fe024.tar.bz2
coreboot-fa66eaefc2c1ef11e97ae638125f42c3044fe024.zip
Get rid of hard coded strings in ACPI tables
(cosmetical) Change-Id: I3e01d8fbf2d71abcfcbe47efedd2184566c91df7 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1748 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/amd/serengeti_cheetah_fam10/fadt.c')
-rw-r--r--src/mainboard/amd/serengeti_cheetah_fam10/fadt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/amd/serengeti_cheetah_fam10/fadt.c b/src/mainboard/amd/serengeti_cheetah_fam10/fadt.c
index cb01f562e255..24d15c80167e 100644
--- a/src/mainboard/amd/serengeti_cheetah_fam10/fadt.c
+++ b/src/mainboard/amd/serengeti_cheetah_fam10/fadt.c
@@ -42,7 +42,7 @@ void acpi_create_fadt(acpi_fadt_t *fadt,acpi_facs_t *facs,void *dsdt){
header->length = 244;
header->revision = 3;
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->asl_compiler_revision=0;