From: Scott Duplichan <[email protected]>

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

Signed-off-by: Marshall Buschman <[email protected]>
---
 src/mainboard/asrock/e350m1/fadt.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mainboard/asrock/e350m1/fadt.c 
b/src/mainboard/asrock/e350m1/fadt.c
index 165a980..0b37885 100644
--- a/src/mainboard/asrock/e350m1/fadt.c
+++ b/src/mainboard/asrock/e350m1/fadt.c
@@ -53,7 +53,7 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, 
void *dsdt)
        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);
-- 
1.7.4.1


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

Reply via email to