[coreboot] [commit] r6586 - trunk/src/mainboard/amd/persimmon

repository service svn at coreboot.org
Sun May 15 23:59:20 CEST 2011


Author: mjones
Date: Sun May 15 23:59:19 2011
New Revision: 6586
URL: https://tracker.coreboot.org/trac/coreboot/changeset/6586

Log:
Make fadt revision match its length. Solves Windows 7 checked build assert.

Signed-off-by: Scott Duplichan <scott at notabs.org>
Acked-by: Marc Jones <marcj303 at gmail.com>

Modified:
   trunk/src/mainboard/amd/persimmon/fadt.c

Modified: trunk/src/mainboard/amd/persimmon/fadt.c
==============================================================================
--- trunk/src/mainboard/amd/persimmon/fadt.c	Sun May 15 23:56:03 2011	(r6585)
+++ trunk/src/mainboard/amd/persimmon/fadt.c	Sun May 15 23:59:19 2011	(r6586)
@@ -53,7 +53,7 @@
 	memset((void *)fadt, 0, sizeof(acpi_fadt_t));
 	memcpy(header->signature, "FACP", 4);
 	header->length = 244;
-	header->revision = 1;
+	header->revision = 3;
 	memcpy(header->oem_id, OEM_ID, 6);
 	memcpy(header->oem_table_id, "COREBOOT", 8);
 	memcpy(header->asl_compiler_id, ASLC, 4);




More information about the coreboot mailing list