drivers/intel/gma/acpi: Replace Divide(a,b) with ASL 2.0 syntax

Replace `Divide (a, b)` with `a / b`.

Change-Id: Icfae760441560e1aa51383d04a3898412ba1be04
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60571
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Felix Singer 2021-12-31 12:12:18 +01:00
parent 9655cfc9c9
commit b232ca67d7
1 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@
/* Always keep BCLP up to date, even if driver is not ready. /* Always keep BCLP up to date, even if driver is not ready.
It requires a full 8-bit brightness value. 255 = 100% */ It requires a full 8-bit brightness value. 255 = 100% */
Store (Divide (Arg0 * 255, 100), Local1) Store (Arg0 * 255 / 100, Local1)
If (LGreater(Local1, 255)) { If (LGreater(Local1, 255)) {
Store (255, Local1) Store (255, Local1)
} }
@ -100,7 +100,7 @@
/* Divide round closest */ /* Divide round closest */
Method (DRCL, 2) Method (DRCL, 2)
{ {
Return (Divide (Arg0 + Divide (Arg1, 2), Arg1)) Return ((Arg0 + Arg1 / 2) / Arg1)
} }
Method (XBCM, 1, NotSerialized) Method (XBCM, 1, NotSerialized)