drivers/intel/gma/acpi: Replace Multiply(a,b) with ASL 2.0 syntax
Replace `Multiply (a, b)` with `a * b`. Change-Id: Idd77fa995e1edab86c509a88a1ba16d636c60b30 Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/60564 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
parent
150daaf3e2
commit
24eb605280
1 changed files with 3 additions and 3 deletions
|
@ -53,7 +53,7 @@
|
|||
|
||||
/* Always keep BCLP up to date, even if driver is not ready.
|
||||
It requires a full 8-bit brightness value. 255 = 100% */
|
||||
Store (Divide (Multiply (Arg0, 255), 100), Local1)
|
||||
Store (Divide (Arg0 * 255, 100), Local1)
|
||||
If (LGreater(Local1, 255)) {
|
||||
Store (255, Local1)
|
||||
}
|
||||
|
@ -105,7 +105,7 @@
|
|||
|
||||
Method (XBCM, 1, NotSerialized)
|
||||
{
|
||||
Store (DRCL (Multiply (Arg0, BCLM), 100), BCLV)
|
||||
Store (DRCL (Arg0 * BCLM, 100), BCLV)
|
||||
}
|
||||
|
||||
/* Find value closest to BCLV in BRIG (which must be ordered) */
|
||||
|
@ -117,7 +117,7 @@
|
|||
Return (Zero)
|
||||
}
|
||||
/* Local0: current percentage */
|
||||
Store (DRCL (Multiply (BCLV, 100), BCLM), Local0)
|
||||
Store (DRCL (BCLV * 100, BCLM), Local0)
|
||||
|
||||
/* Local1: loop index (selectable values start at 2 in BRIG) */
|
||||
Store (2, Local1)
|
||||
|
|
Loading…
Reference in a new issue