aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/slippy/acpi/thermal.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/slippy/acpi/thermal.asl')
-rw-r--r--src/mainboard/google/slippy/acpi/thermal.asl6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mainboard/google/slippy/acpi/thermal.asl b/src/mainboard/google/slippy/acpi/thermal.asl
index 74e73a25c0..1e122a34ae 100644
--- a/src/mainboard/google/slippy/acpi/thermal.asl
+++ b/src/mainboard/google/slippy/acpi/thermal.asl
@@ -103,8 +103,7 @@ Scope (\_TZ)
Store (CTOK (\TCRT), Local1)
If (LGreaterEqual (Local0, Local1)) {
- Store ("CRITICAL TEMPERATURE", Debug)
- Store (Local0, Debug)
+ Printf ("CRITICAL TEMPERATURE: %o", Local0)
// Wait 1 second for EC to re-poll
Sleep (1000)
@@ -112,8 +111,7 @@ Scope (\_TZ)
// Re-read temperature from EC
Store (TCHK (), Local0)
- Store ("RE-READ TEMPERATURE", Debug)
- Store (Local0, Debug)
+ Printf ("RE-READ TEMPERATURE: %o", Local0)
}
Return (Local0)