summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2023-12-03 14:45:52 +0100
committerFelix Held <felix-coreboot@felixheld.de>2023-12-04 17:53:40 +0000
commit87425775484d8381b31ff3323c290b1862698220 (patch)
tree66494b2f7986354862684b5b156fcb9cce73b88a
parentffd9dd55afe8c3743e6585643d756733357d20aa (diff)
downloadcoreboot-87425775484d8381b31ff3323c290b1862698220.tar.gz
coreboot-87425775484d8381b31ff3323c290b1862698220.tar.bz2
coreboot-87425775484d8381b31ff3323c290b1862698220.zip
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 <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/79367 Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/ec/lenovo/h8/acpi/thermal.asl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ec/lenovo/h8/acpi/thermal.asl b/src/ec/lenovo/h8/acpi/thermal.asl
index 4f3b76e4dda4..fa5a282f545d 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 })
}
}