summaryrefslogtreecommitdiff
path: root/src/mainboard/google/zork/variants
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google/zork/variants')
-rw-r--r--src/mainboard/google/zork/variants/baseboard/include/baseboard/acpi/thermal.asl6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mainboard/google/zork/variants/baseboard/include/baseboard/acpi/thermal.asl b/src/mainboard/google/zork/variants/baseboard/include/baseboard/acpi/thermal.asl
index dec33ec5dd..5667248015 100644
--- a/src/mainboard/google/zork/variants/baseboard/include/baseboard/acpi/thermal.asl
+++ b/src/mainboard/google/zork/variants/baseboard/include/baseboard/acpi/thermal.asl
@@ -56,8 +56,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)
@@ -65,8 +64,7 @@ Scope (\_TZ)
/* Re-read temperature from EC */
Local0 = \_SB.PCI0.LPCB.EC0.TSRD (TMPS)
- Debug = "RE-READ TEMPERATURE"
- Debug = Local0
+ Printf ("RE-READ TEMPERATURE: %o", Local0)
}
Return (Local0)