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/variants/cml | |
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/variants/cml')
-rw-r--r-- | src/ec/starlabs/merlin/variants/cml/events.asl | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ec/starlabs/merlin/variants/cml/events.asl b/src/ec/starlabs/merlin/variants/cml/events.asl index 9333c9e3e4..bf7b9677c6 100644 --- a/src/ec/starlabs/merlin/variants/cml/events.asl +++ b/src/ec/starlabs/merlin/variants/cml/events.asl @@ -69,7 +69,7 @@ Method (_QD6, 0, NotSerialized) // Event: 10 Second Power Button Released Method (_Q22, 0, NotSerialized) // Event: CHARGER_T { - Store ("EC: CHARGER_T", Debug) + Printf ("EC: CHARGER_T") } Method (_Q40, 0, NotSerialized) // Event: AC and DC Power @@ -99,22 +99,22 @@ Method (_Q44, 0, NotSerialized) // Event: AC Power Only Method (_Q80, 0, NotSerialized) // Event: Volume Up { - Store ("EC: VOLUME_UP", Debug) + Printf ("EC: VOLUME_UP") } Method (_Q81, 0, NotSerialized) // Event: Volume Down { - Store ("EC: VOLUME_DOWN", Debug) + Printf ("EC: VOLUME_DOWN") } Method (_Q54, 0, NotSerialized) // Event: Power Button Press { - Store ("EC: PWRBTN", Debug) + Printf ("EC: PWRBTN") } Method (_QF0, 0, NotSerialized) // Event: Temperature Report { - Store ("EC: Temperature Report", Debug) + Printf ("EC: Temperature Report") } Method (_QF1, 0, NotSerialized) // Event: Temperature Trigger @@ -129,15 +129,15 @@ Method (_QF1, 0, NotSerialized) // Event: Temperature Trigger Method (_Q02, 0, NotSerialized) // Event: APP { - Store ("EC: APP", Debug) + Printf ("EC: APP") } Method (_Q82, 0, NotSerialized) // Event: MIC { - Store ("EC: MIC", Debug) + Printf ("EC: MIC") } Method (_Q83, 0, NotSerialized) // Event: MUTE { - Store ("EC: MUTE", Debug) + Printf ("EC: MUTE") } |