diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-12-28 17:01:28 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2021-12-29 18:30:20 +0000 |
commit | 3884a411dc20548474872fa191090f6d5a9f8630 (patch) | |
tree | 26b24dc5a1094cbf46f77c87fb6d440ce7439f5a /src/mainboard/google/auron/acpi | |
parent | 7f25f14e000297a445e21a2d18f7be95232bed32 (diff) |
mb/google/auron/acpi: Use Printf() for debug prints
Change-Id: Ib06452c7b89c328d124e98669178b5dd3fc235f8
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60422
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/mainboard/google/auron/acpi')
-rw-r--r-- | src/mainboard/google/auron/acpi/thermal.asl | 6 |
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) |