diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-12-28 17:03:31 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2021-12-30 00:41:06 +0000 |
commit | ffe40a7a709f3af9f05e5c26c0901c3b4bf6687c (patch) | |
tree | 1b13919f35ae30294c2e92d2010a83ccf1dd6f84 /src/mainboard | |
parent | ce134ababd6a444082962ccdfcd34415a647f41e (diff) |
mb/google/beltino/acpi: Use Printf() for debug prints
Change-Id: I3f4ac9ba134e20cc1808de125f87b84f86567303
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60423
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
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) |