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:
		| @@ -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) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user