diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-11 23:19:04 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-12 22:07:16 +0000 |
commit | 01a06b203eba9ed4e457dea92a76bd2114f1c50a (patch) | |
tree | 302750f97b66e74cd57df1722ce99aa53fd601c3 /src/mainboard/google/rambi/acpi/touchscreen_atmel.asl | |
parent | 096158d6e0c85db4c1069424956d1c3b3bde1b5c (diff) |
mb/google/rambi/acpi: Replace LEqual(a,b) with ASL 2.0 syntax
Replace `LEqual (a, b)` with `a == b`.
Change-Id: Ief985f8b7b14e8879a068140cb1f9b28c7336e94
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70597
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/rambi/acpi/touchscreen_atmel.asl')
-rw-r--r-- | src/mainboard/google/rambi/acpi/touchscreen_atmel.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/rambi/acpi/touchscreen_atmel.asl b/src/mainboard/google/rambi/acpi/touchscreen_atmel.asl index 018905c9cf..9c0fc6b535 100644 --- a/src/mainboard/google/rambi/acpi/touchscreen_atmel.asl +++ b/src/mainboard/google/rambi/acpi/touchscreen_atmel.asl @@ -29,7 +29,7 @@ Scope (\_SB.PCI0.I2C6) Method (_STA) { - If (LEqual (\S6EN, 1)) { + If (\S6EN == 1) { Return (0xF) } Else { Return (0x0) |