From f45a6c2a502a4c815444e1c5f0a9c54783442c89 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Mon, 12 Dec 2022 04:54:01 +0100 Subject: ec/lenovo/h8/acpi: Replace Store(a,b) with ASL 2.0 syntax Replace `Store (a, b)` with `b = a`. Change-Id: I1c68816f47aa3ed0ab3bf55d4cfde71d5838d051 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/70637 Tested-by: build bot (Jenkins) Reviewed-by: Eric Lai --- src/ec/lenovo/h8/acpi/beep.asl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ec/lenovo/h8/acpi/beep.asl') diff --git a/src/ec/lenovo/h8/acpi/beep.asl b/src/ec/lenovo/h8/acpi/beep.asl index 214c8a952a..3e5193856c 100644 --- a/src/ec/lenovo/h8/acpi/beep.asl +++ b/src/ec/lenovo/h8/acpi/beep.asl @@ -9,5 +9,5 @@ Field(ERAM, ByteAcc, NoLock, Preserve) Method(BEEP, 1, NotSerialized) { - Store (Arg0, SNDS) + SNDS = Arg0 } -- cgit v1.2.3