diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-12 04:49:46 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-14 00:47:52 +0000 |
commit | 2f308d4957ab41070017094fc887c451b41e799a (patch) | |
tree | cdb6acff72f939fdfc999d957a249a0b4b63cfdd /src/southbridge/intel/i82371eb/acpi/intx.asl | |
parent | b26e2558777f87ebb72501cc7c583f80e4111f8d (diff) |
sb/intel/acpi: Replace Store(a,b) with ASL 2.0 syntax
Replace `Store (a, b)` with `b = a`.
Change-Id: I94b2e6ecb90a2616e184ae9331c397c75089e373
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70636
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/southbridge/intel/i82371eb/acpi/intx.asl')
-rw-r--r-- | src/southbridge/intel/i82371eb/acpi/intx.asl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/southbridge/intel/i82371eb/acpi/intx.asl b/src/southbridge/intel/i82371eb/acpi/intx.asl index f4fa928cc5..087ab4d5e4 100644 --- a/src/southbridge/intel/i82371eb/acpi/intx.asl +++ b/src/southbridge/intel/i82371eb/acpi/intx.asl @@ -21,7 +21,7 @@ Device(intx) { \ } \ \ Method(_DIS ,0) { \ - Store(0x80, pinx) \ + pinx = 0x80 \ } \ \ Method(_PRS ,0) { \ @@ -42,6 +42,6 @@ Device(intx) { \ if (Local0) { \ Local0-- \ } \ - Store(Local0, pinx) \ + pinx = Local0 \ } \ } |