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:
parent
ffd9dd55af
commit
8742577548
|
@ -97,7 +97,7 @@ External (\PPKG, MethodObj)
|
||||||
|
|
||||||
Name (_AL0, Package () { FAN })
|
Name (_AL0, Package () { FAN })
|
||||||
|
|
||||||
PowerResource (FPwR, 0, 0)
|
PowerResource (FPWR, 0, 0)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* WINDOWS BUG: Don't read from EmbeddedControl
|
* WINDOWS BUG: Don't read from EmbeddedControl
|
||||||
|
@ -127,7 +127,7 @@ External (\PPKG, MethodObj)
|
||||||
Device (FAN)
|
Device (FAN)
|
||||||
{
|
{
|
||||||
Name (_HID, EISAID ("PNP0C0B"))
|
Name (_HID, EISAID ("PNP0C0B"))
|
||||||
Name (_PR0, Package () { FPwR })
|
Name (_PR0, Package () { FPWR })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue