diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-12-26 14:20:00 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2021-12-29 13:35:23 +0000 |
commit | acc2ce975817c5a506a4dab45c845da15546f586 (patch) | |
tree | a0ed681727c99e7581bf58bdcebd2bea45176bd4 /src/ec/starlabs/merlin/acpi | |
parent | d05f2319dfc4e08f22b5684de2368017a7775e78 (diff) |
ec/starlabs/merlin: Use Printf() for debug prints
Built with BUILD_TIMELESS=1 and coreboot.rom remains identical.
Change-Id: Ib59cba7bf553e8323c20fd9aa3474f3ecccf465a
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60380
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/ec/starlabs/merlin/acpi')
-rw-r--r-- | src/ec/starlabs/merlin/acpi/keyboard.asl | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/ec/starlabs/merlin/acpi/keyboard.asl b/src/ec/starlabs/merlin/acpi/keyboard.asl index 0078c4c4ff..fc7b1e4072 100644 --- a/src/ec/starlabs/merlin/acpi/keyboard.asl +++ b/src/ec/starlabs/merlin/acpi/keyboard.asl @@ -2,25 +2,25 @@ Method(_Q80) // Volume up { - Store ("-----> _Q80", Debug) + Printf ("-----> _Q80") Notify (\_SB.HIDD, 0xC4) Notify (\_SB.HIDD, 0xC5) - Store ("<----- _Q80", Debug) + Printf ("<----- _Q80") } Method(_Q81) // Volume down { - Store ("-----> _Q81", Debug) + Printf ("-----> _Q81") Notify (\_SB.HIDD, 0xC6) Notify (\_SB.HIDD, 0xC7) - Store ("<----- _Q81", Debug) + Printf ("<----- _Q81") } Method(_Q99) // Wireless mode { - Store ("-----> _Q99", Debug) + Printf ("-----> _Q99") ^^^^HIDD.HPEM (8) - Store ("<----- _Q99", Debug) + Printf ("<----- _Q99") } Method(_Q06) // Brightness decrease @@ -40,20 +40,20 @@ Method(_Q08) // FN lock QEvent Method(_Q54) // Power Button Event { - Store ("-----> _Q54", Debug) - Store ("<----- _Q54", Debug) + Printf ("-----> _Q54") + Printf ("<----- _Q54") } Method(_QD5) // 10 second power button press { - Store ("-----> _QD5", Debug) + Printf ("-----> _QD5") \_SB.PWPR() - Store ("<----- _QD5", Debug) + Printf ("<----- _QD5") } Method(_QD6) // 10 second power button de-press { - Store ("-----> _QD6", Debug) + Printf ("-----> _QD6") \_SB.PWRR() - Store ("<----- _QD6", Debug) + Printf ("<----- _QD6") } |