diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-12-28 17:08:58 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2021-12-29 18:30:58 +0000 |
commit | e490e59c789479018971d5f9a699492d0b197735 (patch) | |
tree | ed4af64115a8a69018642e0ffb813e365413c53c /src | |
parent | c92c87b2fdc770e5c4027579ea7eca61d47f2fe8 (diff) |
mb/google/slippy/acpi: Use Printf() for debug prints
Change-Id: I8c0d1aaccb729eab91c88c77c5efc53d3e951692
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60425
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/google/slippy/acpi/thermal.asl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mainboard/google/slippy/acpi/thermal.asl b/src/mainboard/google/slippy/acpi/thermal.asl index 74e73a25c0..1e122a34ae 100644 --- a/src/mainboard/google/slippy/acpi/thermal.asl +++ b/src/mainboard/google/slippy/acpi/thermal.asl @@ -103,8 +103,7 @@ Scope (\_TZ) Store (CTOK (\TCRT), Local1) If (LGreaterEqual (Local0, Local1)) { - Store ("CRITICAL TEMPERATURE", Debug) - Store (Local0, Debug) + Printf ("CRITICAL TEMPERATURE: %o", Local0) // Wait 1 second for EC to re-poll Sleep (1000) @@ -112,8 +111,7 @@ Scope (\_TZ) // Re-read temperature from EC Store (TCHK (), Local0) - Store ("RE-READ TEMPERATURE", Debug) - Store (Local0, Debug) + Printf ("RE-READ TEMPERATURE: %o", Local0) } Return (Local0) |