From 4cb2692195f26f053bc007e988d7f639a80ffcb2 Mon Sep 17 00:00:00 2001 From: Sean Rhodes Date: Tue, 21 Jan 2025 14:21:42 +0000 Subject: [PATCH] ec/starlabs/merlin/acpi: Move Q Events under EC device For the Q events to be used, they need to sit under the EC device in ACPI. Move them accordingly. Change-Id: I58a41ae660ec466a08d4c290ff820b713b866f4f Signed-off-by: Sean Rhodes Reviewed-on: https://review.coreboot.org/c/coreboot/+/86087 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier --- src/ec/starlabs/merlin/acpi/hid.asl | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/ec/starlabs/merlin/acpi/hid.asl b/src/ec/starlabs/merlin/acpi/hid.asl index 4a85f04dba..f3bfff611e 100644 --- a/src/ec/starlabs/merlin/acpi/hid.asl +++ b/src/ec/starlabs/merlin/acpi/hid.asl @@ -1,14 +1,17 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #if CONFIG(EC_STARLABS_MERLIN) -Method (_Q05, 0, NotSerialized) // Event: Backlight Brightness Down +Scope (\_SB.PCI0.LPCB.EC) { - ^HIDD.HPEM (20) -} + Method (_Q05, 0, NotSerialized) // Event: Backlight Brightness Down + { + ^^^^HIDD.HPEM (20) + } -Method (_Q06, 0, NotSerialized) // Event: Backlight Brightness Up -{ - ^HIDD.HPEM (19) + Method (_Q06, 0, NotSerialized) // Event: Backlight Brightness Up + { + ^^^^HIDD.HPEM (19) + } } #endif