summaryrefslogtreecommitdiffstats
path: root/src/mainboard/aopen/dxplplusu/fadt.c
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-02-28 13:04:29 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-03-01 10:02:29 +0000
commit0d4de2a4771f2b88062dc4d14e9ddd4f00650741 (patch)
tree1e02005f0457270a1b8b156df5a90f8ef6536c9d /src/mainboard/aopen/dxplplusu/fadt.c
parentc3d03b3197dd5c582c18bcf7b9ececde130d07b3 (diff)
downloadcoreboot-0d4de2a4771f2b88062dc4d14e9ddd4f00650741.tar.gz
coreboot-0d4de2a4771f2b88062dc4d14e9ddd4f00650741.tar.bz2
coreboot-0d4de2a4771f2b88062dc4d14e9ddd4f00650741.zip
ACPI: Rename FADT model and set it to zero
INT_MODEL defined in ACPI 1.0 and renamed to reserved since V 2.0. The value for this field is zero but 1 is allowed to maintain compatibility with ACPI 1.0. So set this value to zero as we are using greater version than ACPI 1.0. Change-Id: I910ead4e5618c958a7989f4c309a3a4bb938e31a Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/29986 Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: David Guckian Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/aopen/dxplplusu/fadt.c')
-rw-r--r--src/mainboard/aopen/dxplplusu/fadt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/aopen/dxplplusu/fadt.c b/src/mainboard/aopen/dxplplusu/fadt.c
index 299cac6333da..17f1a9db8668 100644
--- a/src/mainboard/aopen/dxplplusu/fadt.c
+++ b/src/mainboard/aopen/dxplplusu/fadt.c
@@ -46,7 +46,7 @@ void acpi_create_fadt(acpi_fadt_t * fadt, acpi_facs_t * facs, void *dsdt)
fadt->firmware_ctrl = (unsigned long) facs;
fadt->dsdt = (unsigned long) dsdt;
- fadt->model = 1;
+ fadt->reserved = 0;
fadt->preferred_pm_profile = 0; /* PM_MOBILE; */
fadt->sci_int = 0x9;