From a50b1f9dd0e6caa3f33ddac4e54c44f881876ede Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Sun, 6 May 2018 18:13:19 -0500 Subject: intel bd82x6x/lynxpoint systems: Update ACPI thermal zone handler Currently the throttle event handler method THRM is defined as an extern on the intel bd82x6x and lynxpoint chipsets, then defined again in the platform with thermal event handling. In newer versions of IASL, this generates an error, as the method is defined in two places. Simply removing the extern causes the call to it to fail on platforms where it isn't actually defined, so add a preprocessor define where it's implemented, and only call the method on those platforms. This also requires moving the thermal handler, which now includes the define to before the gnvs asl file. TEST=Build before and after, make sure correct code is included. Change-Id: I7af4a346496c1352ec20bda8acb338b5d277d99b Signed-off-by: Martin Roth Reviewed-on: https://review.coreboot.org/26123 Reviewed-by: Nico Huber Tested-by: build bot (Jenkins) --- src/mainboard/kontron/ktqm77/acpi/thermal.asl | 1 + 1 file changed, 1 insertion(+) (limited to 'src/mainboard/kontron/ktqm77/acpi') diff --git a/src/mainboard/kontron/ktqm77/acpi/thermal.asl b/src/mainboard/kontron/ktqm77/acpi/thermal.asl index 0bdef147f5..9c1407ea90 100644 --- a/src/mainboard/kontron/ktqm77/acpi/thermal.asl +++ b/src/mainboard/kontron/ktqm77/acpi/thermal.asl @@ -16,6 +16,7 @@ // Thermal Zone +#define HAVE_THERMALZONE Scope (\_TZ) { ThermalZone (THRM) -- cgit v1.2.3