diff options
Diffstat (limited to 'src/ec/starlabs/merlin/variants/cml/events.asl')
-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") } |