diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2019-02-15 08:21:33 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-02-21 19:07:31 +0000 |
commit | 26071aaadfc5926f7e01623d8fb2967456041dfc (patch) | |
tree | 3380dfb3eec43cfe46e4daa8fca0f8e24e9158d4 /src/mainboard/lenovo/x200 | |
parent | 94ad37619f95a07b94a6a9a570bd74727eb830c4 (diff) | |
download | coreboot-26071aaadfc5926f7e01623d8fb2967456041dfc.tar.xz |
ACPI: Correct asl_compiler_revision value
Change-Id: I91b54b43c8bb5cb17ff86a6d9afa95f265ee49df
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/31431
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/lenovo/x200')
-rw-r--r-- | src/mainboard/lenovo/x200/fadt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/lenovo/x200/fadt.c b/src/mainboard/lenovo/x200/fadt.c index 31336db914..e361e8dcca 100644 --- a/src/mainboard/lenovo/x200/fadt.c +++ b/src/mainboard/lenovo/x200/fadt.c @@ -18,6 +18,7 @@ #include <device/pci.h> #include <arch/acpi.h> #include <cpu/x86/smm.h> +#include <version.h> void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt) { @@ -31,7 +32,7 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt) memcpy(header->oem_id, OEM_ID, 6); memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8); memcpy(header->asl_compiler_id, ASLC, 4); - header->asl_compiler_revision = 0; + header->asl_compiler_revision = asl_revision; fadt->firmware_ctrl = (unsigned long) facs; fadt->dsdt = (unsigned long) dsdt; |