diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-01-02 02:57:02 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-06-09 09:23:40 +0000 |
commit | 7d8df61774998962d34092d0a963df93b6aca926 (patch) | |
tree | 729e9a078f57dcd1226ec09272e999122494e8e0 /src | |
parent | 37a89d519d4e896b8ca87ff44a643932058f0880 (diff) |
mb/aopen/dxplplusu/acpi: Replace LNotEqual(a,b) with ASL 2.0 syntax
Replace `LNotEqual(a, b)` with `a != b`.
Change-Id: Iae3343e66906a8123b3d8de2b67948f286e4ad32
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60704
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Diffstat (limited to 'src')
-rw-r--r-- | src/mainboard/aopen/dxplplusu/acpi/superio.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/aopen/dxplplusu/acpi/superio.asl b/src/mainboard/aopen/dxplplusu/acpi/superio.asl index d3ae8676cb..b49ef444a1 100644 --- a/src/mainboard/aopen/dxplplusu/acpi/superio.asl +++ b/src/mainboard/aopen/dxplplusu/acpi/superio.asl @@ -79,7 +79,7 @@ Method (_CRS, 0, NotSerialized) ShiftLeft (IOM1, 0x08, IOM1) Or (\_SB.PCI0.ICH0.SMSC.IOAL, IOM1, IOM1) Store (IOM1, IOM2) - If (LNotEqual (IOM1, 0x00)) + If (IOM1 != 0) { Store (0x80, IOML) } |