summaryrefslogtreecommitdiff
path: root/src/soc/intel/braswell/acpi/dptf/wifi.asl
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-12-11 21:25:32 +0100
committerFelix Singer <felixsinger@posteo.net>2022-12-12 22:02:59 +0000
commitedec4d9b9a64cf08eb1a722bd7da5d9e58563b34 (patch)
tree3686c11ac780eb75c7e5711492f0b2aa94aeb327 /src/soc/intel/braswell/acpi/dptf/wifi.asl
parent26c76725918e791f02fda41eda72d9b8426b2f5f (diff)
soc/intel/braswell/acpi: Replace LEqual(a,b) with ASL 2.0 syntax
Replace `LEqual (a, b)` with `a == b`. Change-Id: I7b74d026d0800df647fb0c981fa7865be492d3ac Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70590 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/braswell/acpi/dptf/wifi.asl')
-rw-r--r--src/soc/intel/braswell/acpi/dptf/wifi.asl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/braswell/acpi/dptf/wifi.asl b/src/soc/intel/braswell/acpi/dptf/wifi.asl
index 0554d61b72..8c0105f038 100644
--- a/src/soc/intel/braswell/acpi/dptf/wifi.asl
+++ b/src/soc/intel/braswell/acpi/dptf/wifi.asl
@@ -9,7 +9,7 @@ Device (WIFI)
Method (_STA)
{
- If (LEqual (\DPTE, One)) {
+ If (\DPTE == One) {
Return (0xF)
} Else {
Return (0x0)