diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-12 02:34:43 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-14 00:46:41 +0000 |
commit | facf7d077cef1c324fe9b239c63bffd612e60732 (patch) | |
tree | ce531c01ba903b8b9806b0302a6094919da58bc2 /src/superio/acpi/pnp_uart.asl | |
parent | 18af706d501730de4b1471886f7b47b95a522449 (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_uart.asl')
-rw-r--r-- | src/superio/acpi/pnp_uart.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/superio/acpi/pnp_uart.asl b/src/superio/acpi/pnp_uart.asl index f780063be4..0b0acc72f0 100644 --- a/src/superio/acpi/pnp_uart.asl +++ b/src/superio/acpi/pnp_uart.asl @@ -112,7 +112,7 @@ Device (SUPERIO_ID(SER, SUPERIO_UART_LDN)) { ENTER_CONFIG_MODE (SUPERIO_UART_LDN) PNP_WRITE_IO(PNP_IO0, Arg0, IO0) PNP_WRITE_IRQ(PNP_IRQ0, Arg0, IR0) - Store (One, PNP_DEVICE_ACTIVE) + PNP_DEVICE_ACTIVE = One EXIT_CONFIG_MODE () } } |