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