mb/google/jecht/acpi: Replace LGreaterEqual(a,b) with ASL 2.0 syntax

Replace `LGreaterEqual(a, b)` with `a >= b`.

Change-Id: I56e8fdb2503a84ded2bcf183402602579c3f2997
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60694
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
This commit is contained in:
Felix Singer
2022-01-02 02:28:21 +01:00
parent e0545cc2bb
commit 6c84832e9f
4 changed files with 11 additions and 11 deletions

View File

@@ -77,7 +77,7 @@ Scope (\_TZ)
Local1 = 255 - Local0
// Handle values greater than Tj_max
If (LGreaterEqual (Local1, \TMAX)) {
If (Local1 >= \TMAX) {
Return (CTOK (\TMAX))
}
@@ -94,7 +94,7 @@ Scope (\_TZ)
// Critical temperature in deci-kelvin
Store (CTOK (\TMAX), Local1)
If (LGreaterEqual (Local0, Local1)) {
If (Local0 >= Local1) {
Printf ("CRITICAL TEMPERATURE: %o", Local0)
// Wait 1 second for SuperIO to re-poll

View File

@@ -77,7 +77,7 @@ Scope (\_TZ)
Local1 = 255 - Local0
// Handle values greater than Tj_max
If (LGreaterEqual (Local1, \TMAX)) {
If (Local1 >= \TMAX) {
Return (CTOK (\TMAX))
}
@@ -94,7 +94,7 @@ Scope (\_TZ)
// Critical temperature in deci-kelvin
Store (CTOK (\TMAX), Local1)
If (LGreaterEqual (Local0, Local1)) {
If (Local0 >= Local1) {
Printf ("CRITICAL TEMPERATURE: %o", Local0)
// Wait 1 second for SuperIO to re-poll

View File

@@ -77,7 +77,7 @@ Scope (\_TZ)
Local1 = 255 - Local0
// Handle values greater than Tj_max
If (LGreaterEqual (Local1, \TMAX)) {
If (Local1 >= \TMAX) {
Return (CTOK (\TMAX))
}
@@ -94,7 +94,7 @@ Scope (\_TZ)
// Critical temperature in deci-kelvin
Store (CTOK (\TMAX), Local1)
If (LGreaterEqual (Local0, Local1)) {
If (Local0 >= Local1) {
Printf ("CRITICAL TEMPERATURE: %o", Local0)
// Wait 1 second for SuperIO to re-poll

View File

@@ -117,13 +117,13 @@ Scope (\_TZ)
}
If (LEqual (THTB, 2)) {
If (LGreaterEqual (Local0, THERMAL_POLICY_0_THRESHOLD_ON)) {
If (Local0 >= THERMAL_POLICY_0_THRESHOLD_ON) {
TTB0 ()
} ElseIf (LGreaterEqual (Local0, THERMAL_POLICY_1_THRESHOLD_ON)) {
} ElseIf (Local0 >= THERMAL_POLICY_1_THRESHOLD_ON) {
TTB1 ()
}
} ElseIf (LEqual (THTB, 1)) {
If (LGreaterEqual (Local0, THERMAL_POLICY_0_THRESHOLD_ON)) {
If (Local0 >= THERMAL_POLICY_0_THRESHOLD_ON) {
TTB0 ()
} ElseIf (LLessEqual (Local0, THERMAL_POLICY_1_THRESHOLD_OFF)) {
TTB2 ()
@@ -185,7 +185,7 @@ Scope (\_TZ)
Local1 = 255 - Local0
// Handle values greater than Tj_max
If (LGreaterEqual (Local1, \TMAX)) {
If (Local1 >= \TMAX) {
Return (CTOK (\TMAX))
}
@@ -202,7 +202,7 @@ Scope (\_TZ)
// Critical temperature in deci-kelvin
Store (CTOK (\TMAX), Local1)
If (LGreaterEqual (Local0, Local1)) {
If (Local0 >= Local1) {
Printf ("CRITICAL TEMPERATURE: %o", Local0)
// Wait 1 second for SuperIO to re-poll