Attention is currently required from: Andrey Petrov, Patrick Rudolph. Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60588 )
Change subject: soc/intel/apollolake/acpi: Replace Decrement() with ASL 2.0 syntax ......................................................................
soc/intel/apollolake/acpi: Replace Decrement() with ASL 2.0 syntax
Replace `Decrement (a)` with `a--`.
Change-Id: I523c6b14c127ec7c0eb41078fb2eb92f42d74bd5 Signed-off-by: Felix Singer felixsinger@posteo.net --- M src/soc/intel/apollolake/acpi/northbridge.asl 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/88/60588/1
diff --git a/src/soc/intel/apollolake/acpi/northbridge.asl b/src/soc/intel/apollolake/acpi/northbridge.asl index ea9d5b4..6791e15 100644 --- a/src/soc/intel/apollolake/acpi/northbridge.asl +++ b/src/soc/intel/apollolake/acpi/northbridge.asl @@ -95,7 +95,7 @@
/* Read TOLUD */ And(_SB.PCI0.MCHC.TLUD, 0xFFF00000, GMAX) - Decrement(GMAX) + GMAX-- GLEN = GMAX - GMIN + 1
/* Patch PM02 range based on Memory Size */