summaryrefslogtreecommitdiff
path: root/src/mainboard/google/auron
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/auron')
-rw-r--r--src/mainboard/google/auron/acpi/thermal.asl6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mainboard/google/auron/acpi/thermal.asl b/src/mainboard/google/auron/acpi/thermal.asl
index fd05e7350f..898ef26ef2 100644
--- a/src/mainboard/google/auron/acpi/thermal.asl
+++ b/src/mainboard/google/auron/acpi/thermal.asl
@@ -92,8 +92,7 @@ Scope (\_TZ)
Local1 = CTOK (\TCRT)
If (Local0 >= Local1) {
- Debug = "CRITICAL TEMPERATURE"
- Debug = Local0
+ Printf ("CRITICAL TEMPERATURE: %o", Local0)
// Wait 1 second for EC to re-poll
Sleep (1000)
@@ -101,8 +100,7 @@ Scope (\_TZ)
// Re-read temperature from EC
Local0 = TCHK ()
- Debug = "RE-READ TEMPERATURE"
- Debug = Local0
+ Printf ("RE-READ TEMPERATURE: %o", Local0)
}
Return (Local0)