From 87425775484d8381b31ff3323c290b1862698220 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Sun, 3 Dec 2023 14:45:52 +0100 Subject: [PATCH] ec/lenovo/h8/acpi/thermal: Make NameSeg FPWR all upper case Building the Lenovo T60/T60p, iasl 20230628 shows the remark below: dsdt.asl 2099: PowerResource (FPwR, 0, 0) Remark 2182 - ^ At least one lower case letter found in NameSeg, ASL is case insensitive - converting to upper case (FPWR) dsdt.asl 2118: Name (_PR0, Package () { FPwR }) Remark 2182 - ^ At least one lower case letter found in NameSeg, ASL is case insensitive - converting to upper case (FPWR) Address it by making it all upper case. Change-Id: Ia7924b015e76c43818d2d82da35ce0013d721c26 Fixes: 3ab13a8691cb ("ec/lenovo/h8/acpi/thermal: Add support for passive cooling") Signed-off-by: Paul Menzel Reviewed-on: https://review.coreboot.org/c/coreboot/+/79367 Reviewed-by: Nico Huber Reviewed-by: Felix Singer Tested-by: build bot (Jenkins) --- src/ec/lenovo/h8/acpi/thermal.asl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ec/lenovo/h8/acpi/thermal.asl b/src/ec/lenovo/h8/acpi/thermal.asl index 4f3b76e4dd..fa5a282f54 100644 --- a/src/ec/lenovo/h8/acpi/thermal.asl +++ b/src/ec/lenovo/h8/acpi/thermal.asl @@ -97,7 +97,7 @@ External (\PPKG, MethodObj) Name (_AL0, Package () { FAN }) - PowerResource (FPwR, 0, 0) + PowerResource (FPWR, 0, 0) { /* * WINDOWS BUG: Don't read from EmbeddedControl @@ -127,7 +127,7 @@ External (\PPKG, MethodObj) Device (FAN) { Name (_HID, EISAID ("PNP0C0B")) - Name (_PR0, Package () { FPwR }) + Name (_PR0, Package () { FPWR }) } }