diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-07-21 22:15:43 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-07-21 22:15:43 +0000 |
commit | cdfe376c06bf95399b03196de0a436e719811eea (patch) | |
tree | 3f155f33e06c9255ad3f675613d8fc53297570df /src/mainboard/intel | |
parent | aecf2511c67a263325c0e0cac05fc1ba20643048 (diff) | |
download | coreboot-cdfe376c06bf95399b03196de0a436e719811eea.tar.xz |
clean up acpi table strings, as discussed on the list
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4460 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/intel')
-rw-r--r-- | src/mainboard/intel/eagleheights/acpi_tables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/intel/eagleheights/acpi_tables.c b/src/mainboard/intel/eagleheights/acpi_tables.c index a6b06ff763..71ba060d7f 100644 --- a/src/mainboard/intel/eagleheights/acpi_tables.c +++ b/src/mainboard/intel/eagleheights/acpi_tables.c @@ -59,7 +59,7 @@ void acpi_create_intel_hpet(acpi_hpet_t * hpet) memset((void *) hpet, 0, sizeof(acpi_hpet_t)); /* fill out header fields */ - memcpy(header->signature, HPET_NAME, 4); + memcpy(header->signature, "HPET", 4); memcpy(header->oem_id, OEM_ID, 6); memcpy(header->oem_table_id, "IC ", 8); memcpy(header->asl_compiler_id, ASLC, 4); |