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>
This commit is contained in:
parent
c92c87b2fd
commit
e490e59c78
|
@ -103,8 +103,7 @@ Scope (\_TZ)
|
||||||
Store (CTOK (\TCRT), Local1)
|
Store (CTOK (\TCRT), Local1)
|
||||||
|
|
||||||
If (LGreaterEqual (Local0, Local1)) {
|
If (LGreaterEqual (Local0, Local1)) {
|
||||||
Store ("CRITICAL TEMPERATURE", Debug)
|
Printf ("CRITICAL TEMPERATURE: %o", Local0)
|
||||||
Store (Local0, Debug)
|
|
||||||
|
|
||||||
// Wait 1 second for EC to re-poll
|
// Wait 1 second for EC to re-poll
|
||||||
Sleep (1000)
|
Sleep (1000)
|
||||||
|
@ -112,8 +111,7 @@ Scope (\_TZ)
|
||||||
// Re-read temperature from EC
|
// Re-read temperature from EC
|
||||||
Store (TCHK (), Local0)
|
Store (TCHK (), Local0)
|
||||||
|
|
||||||
Store ("RE-READ TEMPERATURE", Debug)
|
Printf ("RE-READ TEMPERATURE: %o", Local0)
|
||||||
Store (Local0, Debug)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Return (Local0)
|
Return (Local0)
|
||||||
|
|
Loading…
Reference in New Issue