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 <[email protected]>
Acked-by: Marc Jones <[email protected]>

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);

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to