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: 3ab13a8691 ("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>
This commit is contained in:
Paul Menzel 2023-12-03 14:45:52 +01:00 committed by Felix Held
parent ffd9dd55af
commit 8742577548
1 changed files with 2 additions and 2 deletions

View File

@ -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 })
}
}