From 34dde858d60f64e5c671e4c8ffd00d4885c77c15 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Tue, 28 Dec 2021 17:16:12 +0100 Subject: mb/google/jecht/acpi: Use Printf() for debug prints Change-Id: Ie54637c451252fd38aab9207ab0b846cc50f4b12 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/60427 Tested-by: build bot (Jenkins) Reviewed-by: HAOUAS Elyes --- .../google/jecht/variants/guado/include/variant/acpi/thermal.asl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/mainboard/google/jecht/variants/guado') diff --git a/src/mainboard/google/jecht/variants/guado/include/variant/acpi/thermal.asl b/src/mainboard/google/jecht/variants/guado/include/variant/acpi/thermal.asl index 2a16352c41..d5c943a346 100644 --- a/src/mainboard/google/jecht/variants/guado/include/variant/acpi/thermal.asl +++ b/src/mainboard/google/jecht/variants/guado/include/variant/acpi/thermal.asl @@ -95,8 +95,7 @@ Scope (\_TZ) Store (CTOK (\TMAX), Local1) If (LGreaterEqual (Local0, Local1)) { - Store ("CRITICAL TEMPERATURE", Debug) - Store (Local0, Debug) + Printf ("CRITICAL TEMPERATURE: %o", Local0) // Wait 1 second for SuperIO to re-poll Sleep (1000) @@ -104,8 +103,7 @@ Scope (\_TZ) // Re-read temperature from SuperIO Store (TCHK (), Local0) - Store ("RE-READ TEMPERATURE", Debug) - Store (Local0, Debug) + Printf ("RE-READ TEMPERATURE: %o", Local0) } Return (Local0) -- cgit v1.2.3