Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/62421 )
Change subject: mb/starlabs/labtop: Always run PTS ......................................................................
mb/starlabs/labtop: Always run PTS
Remove the dependency on Arg0 so PTS always runs.
Signed-off-by: Sean Rhodes sean@starlabs.systems Change-Id: I96c44397d62848231039330a32de781f75bb56bb Reviewed-on: https://review.coreboot.org/c/coreboot/+/62421 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Angel Pons th3fanbus@gmail.com Reviewed-by: Andy Pont andy.pont@sdcsystems.com --- M src/mainboard/starlabs/labtop/acpi/sleep.asl 1 file changed, 1 insertion(+), 4 deletions(-)
Approvals: build bot (Jenkins): Verified Angel Pons: Looks good to me, approved Andy Pont: Looks good to me, but someone else must approve
diff --git a/src/mainboard/starlabs/labtop/acpi/sleep.asl b/src/mainboard/starlabs/labtop/acpi/sleep.asl index 9dc818d0..b4df10a 100644 --- a/src/mainboard/starlabs/labtop/acpi/sleep.asl +++ b/src/mainboard/starlabs/labtop/acpi/sleep.asl @@ -2,10 +2,7 @@
Method (MPTS, 1, NotSerialized) { - If (Arg0) - { - RPTS (Arg0) - } + RPTS (Arg0) }
Method (MWAK, 1, NotSerialized)