diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-12-28 16:51:47 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2021-12-29 18:29:41 +0000 |
commit | a8b0c1a024ed3e19762a9140d5a6f17caa235ffa (patch) | |
tree | d245f3b795de452cb107b2cfab3758c11912a3b2 /src | |
parent | b385640e83b2c3e378cf14e9b51526c9043dd31b (diff) |
mb/roda/rk886ex/acpi: Use Printf() for debug prints
Change-Id: I6091d81d49e5ae6bf30a03d2fb2d54f0ec6533d1
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60419
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/roda/rk886ex/acpi/ec.asl | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mainboard/roda/rk886ex/acpi/ec.asl b/src/mainboard/roda/rk886ex/acpi/ec.asl index 9ebe4b5eac..fc1a484f0e 100644 --- a/src/mainboard/roda/rk886ex/acpi/ec.asl +++ b/src/mainboard/roda/rk886ex/acpi/ec.asl @@ -72,20 +72,20 @@ Device(EC0) Method (_Q11, 0) { - Debug = "_Q11: Fn-F8 (Sleep Button) pressed" + Printf ("_Q11: Fn-F8 (Sleep Button) pressed") Notify(SLPB, 0x80) } Method (_Q12, 0) { - Debug = "_Q12: Fn-F9 (Display Switch) pressed" + Printf ("_Q12: Fn-F9 (Display Switch) pressed") Notify (\_SB.PCI0.GFX0, 0x82) // TLST = 1 } Method (_Q30, 0) { - Debug = "_Q30: AC In/Out" + Printf ("_Q30: AC In/Out") Notify(ADP1, 0x80) // Tell the Power Adapter PNOT() // and the CPU and Battery // Notify the Batteries @@ -95,13 +95,13 @@ Device(EC0) Method (_Q31, 0) { - Debug = "_Q31: LID Open/Close" + Printf ("_Q31: LID Open/Close") Notify(LID0, 0x80) } Method (_Q32, 0) { - Debug = "_Q32: Battery 1 In/Out" + Printf ("_Q32: Battery 1 In/Out") If (ECON) { Local0 = P62S If (~Local0) { @@ -112,7 +112,7 @@ Device(EC0) Method (_Q33, 0) { - Debug = "_Q33: Battery 2 In/Out" + Printf ("_Q33: Battery 2 In/Out") If (ECON) { Local0 = P63S If (~Local0) { @@ -123,33 +123,33 @@ Device(EC0) Method (_Q34, 0) { - Debug = "_Q34: LPT/FDD" + Printf ("_Q34: LPT/FDD") // PHSS(0x70) } Method (_Q35, 0) { - Debug = "_Q35: Processor is hot" + Printf ("_Q35: Processor is hot") } Method (_Q36, 0) { - Debug = "_Q36: Thermal Warning" + Printf ("_Q36: Thermal Warning") } Method (_Q37, 0) { - Debug = "_Q37: PME" + Printf ("_Q37: PME") } Method (_Q38, 0) { - Debug = "_Q38: Thermal" + Printf ("_Q38: Thermal") } Method (_Q39, 0) { - Debug = "_Q39: Thermal" + Printf ("_Q39: Thermal") } // TODO Scope _SB devices for AC power, LID, Power button |