diff options
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/beltino/acpi/thermal.asl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mainboard/google/beltino/acpi/thermal.asl b/src/mainboard/google/beltino/acpi/thermal.asl index 96acaeb975..c6b686ee6c 100644 --- a/src/mainboard/google/beltino/acpi/thermal.asl +++ b/src/mainboard/google/beltino/acpi/thermal.asl @@ -94,8 +94,7 @@ Scope (\_TZ) Local1 = CTOK (\TMAX) If (Local0 >= Local1) { - Debug = "CRITICAL TEMPERATURE" - Debug = Local0 + Printf ("CRITICAL TEMPERATURE: %o", Local0) // Wait 1 second for SuperIO to re-poll Sleep (1000) @@ -103,8 +102,7 @@ Scope (\_TZ) // Re-read temperature from SuperIO Local0 = TCHK () - Debug = "RE-READ TEMPERATURE" - Debug = Local0 + Printf ("RE-READ TEMPERATURE: %o", Local0) } Return (Local0) |