From e0c26a05d435f76005c05d0fac7d66ef9daf679d Mon Sep 17 00:00:00 2001 From: Sean Rhodes Date: Thu, 26 Feb 2026 12:39:12 +0000 Subject: [PATCH] ec/starlabs/merlin: fix OSFG suspend comment OSFG is toggled from _PTS/_WAK via MPTS/MWAK and therefore runs for all supported sleep states. Update the suspend/resume comments to match the unguarded behavior. Signed-off-by: Sean Rhodes Change-Id: I613efd68ed2770798c2754a1c59f802f47986795 Reviewed-on: https://review.coreboot.org/c/coreboot/+/91439 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier --- src/ec/starlabs/merlin/acpi/suspend.asl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ec/starlabs/merlin/acpi/suspend.asl b/src/ec/starlabs/merlin/acpi/suspend.asl index 2039b34c47..966362f8a4 100644 --- a/src/ec/starlabs/merlin/acpi/suspend.asl +++ b/src/ec/starlabs/merlin/acpi/suspend.asl @@ -66,7 +66,7 @@ Method (RPTS, 1, Serialized) /* * Disable ACPI support. - * This should always be the last action before entering S4 or S5. + * This should always be the last action before entering a sleep state. */ \_SB.PCI0.LPCB.EC.ECWR(0x00, RefOf(\_SB.PCI0.LPCB.EC.OSFG)) } @@ -75,7 +75,7 @@ Method (RWAK, 1, Serialized) { /* * Enable ACPI support. - * This should always be the first action when exiting S4 or S5. + * This should always be the first action when exiting a sleep state. */ \_SB.PCI0.LPCB.EC.ECWR(0x01, RefOf(\_SB.PCI0.LPCB.EC.OSFG))