From 1c57c9846a2588834c7793a2ee7b613c1a2a00d6 Mon Sep 17 00:00:00 2001 From: Matt DeVillier Date: Thu, 10 Aug 2023 11:48:43 -0500 Subject: mb/google/rambi: Guard inclusion of DPTF ACPI object Neither Windows nor mainline Linux make use of DPTF on the Baytrail platform, so guard its inclusion with CONFIG(CHROMEOS) to prevent an unknown device being listed in Windows device manager. TEST=build/boot Win11, Linux 6.2 on google/swanky Change-Id: Ifc4d349691b647fe2d70c92bd20d1b1128b1e10a Signed-off-by: Matt DeVillier Reviewed-on: https://review.coreboot.org/c/coreboot/+/77140 Reviewed-by: Sean Rhodes Tested-by: build bot (Jenkins) --- src/mainboard/google/rambi/dsdt.asl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mainboard/google/rambi/dsdt.asl b/src/mainboard/google/rambi/dsdt.asl index 63a1fc7885..21d59321be 100644 --- a/src/mainboard/google/rambi/dsdt.asl +++ b/src/mainboard/google/rambi/dsdt.asl @@ -27,9 +27,10 @@ DefinitionBlock( #include #include } - +#if CONFIG(CHROMEOS) /* Dynamic Platform Thermal Framework */ #include "acpi/dptf.asl" +#endif } #include -- cgit v1.2.3