aboutsummaryrefslogtreecommitdiff
path: root/src/superio/acpi/pnp_generic.asl
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-12-12 02:34:43 +0100
committerFelix Singer <felixsinger@posteo.net>2022-12-14 00:46:41 +0000
commitfacf7d077cef1c324fe9b239c63bffd612e60732 (patch)
treece531c01ba903b8b9806b0302a6094919da58bc2 /src/superio/acpi/pnp_generic.asl
parent18af706d501730de4b1471886f7b47b95a522449 (diff)
superio/acpi: Replace Store(a,b) with ASL 2.0 syntax
Replace `Store (a, b)` with `b = a`. Change-Id: Ibbecba97dd1628889539c2962dd31964c252c8bb Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70631 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/superio/acpi/pnp_generic.asl')
-rw-r--r--src/superio/acpi/pnp_generic.asl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/acpi/pnp_generic.asl b/src/superio/acpi/pnp_generic.asl
index 2bcc139b67..8ffc507278 100644
--- a/src/superio/acpi/pnp_generic.asl
+++ b/src/superio/acpi/pnp_generic.asl
@@ -168,7 +168,7 @@ Device (SUPERIO_ID(PN, SUPERIO_PNP_LDN)) {
#ifdef SUPERIO_PNP_DMA
PNP_WRITE_DMA(PNP_DMA0, Arg0, DM0)
#endif
- Store (One, PNP_DEVICE_ACTIVE)
+ PNP_DEVICE_ACTIVE = One
EXIT_CONFIG_MODE ()
}