mb/google/jecht/acpi: Replace LLess(a,b) with ASL 2.0 syntax
Replace `LLess(a, b)` with `a < b`. Change-Id: Id61c537cc91edbd407fb6429eb4dd2bc8bc7f123 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60678 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Sean Rhodes <sean@starlabs.systems>
This commit is contained in:
parent
fc12747ac3
commit
c0ce14cc04
|
@ -129,7 +129,7 @@ Scope (\_TZ)
|
|||
TTB2 ()
|
||||
}
|
||||
} Else {
|
||||
If (LLess (Local0, THERMAL_POLICY_1_THRESHOLD_OFF)) {
|
||||
If (Local0 < THERMAL_POLICY_1_THRESHOLD_OFF) {
|
||||
TTB2 ()
|
||||
} ElseIf (LLessEqual (Local0, THERMAL_POLICY_0_THRESHOLD_OFF)) {
|
||||
TTB1 ()
|
||||
|
|
Loading…
Reference in New Issue