diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2020-10-04 09:30:46 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-10-12 14:40:17 +0000 |
commit | 527a4f37db39042764a03643daf93904b93f1e2c (patch) | |
tree | 7478ca9ab248a158be35db7281043a3dcd3a5963 /src/superio | |
parent | f2042099cc0072831d2e790fab0e79c2a697a8c9 (diff) |
superio/fintek/f81803a/acpi: Convert superio.asl to ASL 2.0 syntax
Change-Id: Ia7072112a1add1de9c3fb348bc70dbd404337819
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/45989
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/superio')
-rw-r--r-- | src/superio/fintek/f81803a/acpi/superio.asl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/superio/fintek/f81803a/acpi/superio.asl b/src/superio/fintek/f81803a/acpi/superio.asl index 302f2f4ffe..4e2c525856 100644 --- a/src/superio/fintek/f81803a/acpi/superio.asl +++ b/src/superio/fintek/f81803a/acpi/superio.asl @@ -152,7 +152,7 @@ Device(SUPERIO_DEV) { 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 = 1 EXIT_CONFIG_MODE () } } @@ -221,7 +221,7 @@ Device(SUPERIO_DEV) { 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 = 1 EXIT_CONFIG_MODE () } } @@ -244,7 +244,7 @@ Device(SUPERIO_DEV) { { /* DBG0("SIO CPSI") */ ENTER_CONFIG_MODE(SUPERIO_PME_LDN) - Store(1, PSIN) + PSIN = 1 EXIT_CONFIG_MODE() } #endif |