aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/braswell/acpi/dptf/dptf.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/braswell/acpi/dptf/dptf.asl')
-rw-r--r--src/soc/intel/braswell/acpi/dptf/dptf.asl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/braswell/acpi/dptf/dptf.asl b/src/soc/intel/braswell/acpi/dptf/dptf.asl
index b41effc7b7..939db166a6 100644
--- a/src/soc/intel/braswell/acpi/dptf/dptf.asl
+++ b/src/soc/intel/braswell/acpi/dptf/dptf.asl
@@ -19,7 +19,7 @@ Device (DPTF)
Method (_STA)
{
- If (LEqual (\DPTE, One)) {
+ If (\DPTE == One) {
Return (0xF)
} Else {
Return (0x0)
@@ -36,7 +36,7 @@ Device (DPTF)
Method (_OSC, 4, Serialized)
{
/* Check for Passive Policy UUID */
- If (LEqual (DeRefOf (Index (IDSP, 0)), Arg0)) {
+ If (DeRefOf (Index (IDSP, 0)) == Arg0) {
/* Initialize Thermal Devices */
^TINI ()