summaryrefslogtreecommitdiff
path: root/src/soc/intel/baytrail/acpi/dptf/cpu.asl
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2022-12-11 21:15:05 +0100
committerFelix Singer <felixsinger@posteo.net>2022-12-12 22:01:02 +0000
commit26c76725918e791f02fda41eda72d9b8426b2f5f (patch)
tree1e61513e3aadd2ecd3198340b59f1441f1a00e44 /src/soc/intel/baytrail/acpi/dptf/cpu.asl
parent31c099a7b835be76c9967d6cddb9b0d979c03101 (diff)
soc/intel/baytrail/acpi: Replace LEqual(a,b) with ASL 2.0 syntax
Replace `LEqual (a, b)` with `a == b`. Change-Id: I9d50ddcb4427774681aedba945079f5d04401f07 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70589 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/baytrail/acpi/dptf/cpu.asl')
-rw-r--r--src/soc/intel/baytrail/acpi/dptf/cpu.asl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/baytrail/acpi/dptf/cpu.asl b/src/soc/intel/baytrail/acpi/dptf/cpu.asl
index 8e43f6736f..cca1423356 100644
--- a/src/soc/intel/baytrail/acpi/dptf/cpu.asl
+++ b/src/soc/intel/baytrail/acpi/dptf/cpu.asl
@@ -13,7 +13,7 @@ Device (TCPU)
Method (_STA)
{
- If (LEqual (\DPTE, One)) {
+ If (\DPTE == One) {
Return (0xF)
} Else {
Return (0x0)