aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/common/acpi/sgx.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/common/acpi/sgx.asl')
-rw-r--r--src/soc/intel/common/acpi/sgx.asl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/intel/common/acpi/sgx.asl b/src/soc/intel/common/acpi/sgx.asl
index 4f47cf44e4..c0b8040729 100644
--- a/src/soc/intel/common/acpi/sgx.asl
+++ b/src/soc/intel/common/acpi/sgx.asl
@@ -37,15 +37,15 @@ Scope(\_SB)
CreateQwordField (RBUF, ^BAR0._MIN, EMIN)
CreateQwordField (RBUF, ^BAR0._MAX, EMAX)
CreateQwordField (RBUF, ^BAR0._LEN, ELEN)
- Store (EMNA, EMIN)
- Store (ELNG, ELEN)
- Subtract (Add (EMNA, ELNG), 1, EMAX)
+ EMIN = EMNA
+ ELEN = ELNG
+ EMAX = EMNA + ELNG - 1
Return (RBUF)
}
Method (_STA, 0x0, NotSerialized)
{
- If (LNotEqual (EPCS, 0))
+ If (EPCS != 0)
{
Return (0xF)
}