aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/packardbell/ms2290/acpi/thermal.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/packardbell/ms2290/acpi/thermal.asl')
-rw-r--r--src/mainboard/packardbell/ms2290/acpi/thermal.asl12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mainboard/packardbell/ms2290/acpi/thermal.asl b/src/mainboard/packardbell/ms2290/acpi/thermal.asl
index 8d24127748..a6935041b8 100644
--- a/src/mainboard/packardbell/ms2290/acpi/thermal.asl
+++ b/src/mainboard/packardbell/ms2290/acpi/thermal.asl
@@ -6,13 +6,13 @@ Scope(\_TZ)
Method(C2K, 1, NotSerialized)
{
- Multiply(Arg0, 10, Local0)
- Add (Local0, 2732, Local0)
- if (LLessEqual(Local0, 2732)) {
+ Local0 = Arg0 * 10
+ Local0 += 2732
+ if (Local0 <= 2732) {
Return (3000)
}
- if (LGreater(Local0, 4012)) {
+ if (Local0 > 4012) {
Return (3000)
}
Return (Local0)
@@ -25,10 +25,10 @@ Scope(\_TZ)
}
Method(_TMP) {
/* Avoid tripping alarm if ME isn't booted at all yet */
- If (LAnd (LNot (MEBT), LEqual (\_SB.PCI0.LPCB.EC.TMP0, 128))) {
+ If (!MEBT && (\_SB.PCI0.LPCB.EC.TMP0 == 128)) {
Return (C2K(40))
}
- Store (1, MEBT)
+ MEBT = 1
Return (C2K(\_SB.PCI0.LPCB.EC.TMP0))
}
}