summaryrefslogtreecommitdiff
path: root/src/ec/lenovo/h8/acpi/beep.asl
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-12-12 04:54:01 +0100
committerFelix Singer <felixsinger@posteo.net>2022-12-14 00:48:07 +0000
commitf45a6c2a502a4c815444e1c5f0a9c54783442c89 (patch)
tree4cf6e24ceeb946347fc0d3feac963a8b81929a7e /src/ec/lenovo/h8/acpi/beep.asl
parent2f308d4957ab41070017094fc887c451b41e799a (diff)
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 <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70637 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/ec/lenovo/h8/acpi/beep.asl')
-rw-r--r--src/ec/lenovo/h8/acpi/beep.asl2
1 files changed, 1 insertions, 1 deletions
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
}