From 0d4de2a4771f2b88062dc4d14e9ddd4f00650741 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Thu, 28 Feb 2019 13:04:29 +0100 Subject: 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 Reviewed-on: https://review.coreboot.org/c/29986 Reviewed-by: Martin Roth Reviewed-by: David Guckian Reviewed-by: Paul Menzel Tested-by: build bot (Jenkins) --- src/mainboard/roda/rk9/fadt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mainboard/roda') diff --git a/src/mainboard/roda/rk9/fadt.c b/src/mainboard/roda/rk9/fadt.c index e361e8dcca..d22ffd9b38 100644 --- a/src/mainboard/roda/rk9/fadt.c +++ b/src/mainboard/roda/rk9/fadt.c @@ -36,7 +36,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 = 0x00; + fadt->reserved = 0x00; fadt->preferred_pm_profile = PM_MOBILE; fadt->sci_int = 0x9; fadt->smi_cmd = APM_CNT; -- cgit v1.2.3