ec/google/chromeec/acpi: Replace Add(a,b) with ASL 2.0 syntax
Replace `Add (a, b)` with `a + b`. Change-Id: I7a0f9685130cdb124cf5e3ee517328e949a023e3 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60508 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
parent
f59d76175a
commit
263beafc6f
|
@ -210,7 +210,7 @@ Method (BBST, 4, Serialized)
|
|||
|
||||
// See if within ~6% of full
|
||||
ShiftRight (Local2, 4, Local3)
|
||||
If (LGreater (Local1, Local2 - Local3) && LLess (Local1, Add (Local2, Local3)))
|
||||
If (LGreater (Local1, Local2 - Local3) && LLess (Local1, Local2 + Local3))
|
||||
{
|
||||
Store (Local2, Local1)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue