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>
This commit is contained in:
parent
ce134ababd
commit
ffe40a7a70
1 changed files with 2 additions and 4 deletions
|
@ -94,8 +94,7 @@ Scope (\_TZ)
|
||||||
Local1 = CTOK (\TMAX)
|
Local1 = CTOK (\TMAX)
|
||||||
|
|
||||||
If (Local0 >= Local1) {
|
If (Local0 >= Local1) {
|
||||||
Debug = "CRITICAL TEMPERATURE"
|
Printf ("CRITICAL TEMPERATURE: %o", Local0)
|
||||||
Debug = Local0
|
|
||||||
|
|
||||||
// Wait 1 second for SuperIO to re-poll
|
// Wait 1 second for SuperIO to re-poll
|
||||||
Sleep (1000)
|
Sleep (1000)
|
||||||
|
@ -103,8 +102,7 @@ Scope (\_TZ)
|
||||||
// Re-read temperature from SuperIO
|
// Re-read temperature from SuperIO
|
||||||
Local0 = TCHK ()
|
Local0 = TCHK ()
|
||||||
|
|
||||||
Debug = "RE-READ TEMPERATURE"
|
Printf ("RE-READ TEMPERATURE: %o", Local0)
|
||||||
Debug = Local0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Return (Local0)
|
Return (Local0)
|
||||||
|
|
Loading…
Reference in a new issue