From bf1de40853e4ead8755d46588964032c6ff6d92c Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Mon, 12 Dec 2022 01:18:31 +0100 Subject: {soc,superio}/acpi: Replace Subtract(a,b,c) with ASL 2.0 syntax Replace `Subtract (a, b, c)` with `c = a - b`. Change-Id: If6455ab2c91619f884abae227f1ac2e2c2af6ba9 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/70625 Tested-by: build bot (Jenkins) Reviewed-by: Elyes Haouas --- src/superio/acpi/pnp.asl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/superio/acpi/pnp.asl') diff --git a/src/superio/acpi/pnp.asl b/src/superio/acpi/pnp.asl index dc5c3909c4..6fdcb85898 100644 --- a/src/superio/acpi/pnp.asl +++ b/src/superio/acpi/pnp.asl @@ -121,10 +121,10 @@ #define PNP_WRITE_IRQ(IRQ_TO, RESOURCE, IRQ_TAG) \ CreateWordField (RESOURCE, IRQ_TAG._INT, IRQ_TAG##W)\ - Subtract (FindSetLeftBit (IRQ_TAG##W), 1, IRQ_TO) + IRQ_TO = FindSetLeftBit (IRQ_TAG##W) - 1 #define PNP_WRITE_DMA(DMA_TO, RESOURCE, DMA_TAG) \ CreateByteField (RESOURCE, DMA_TAG._DMA, DMA_TAG##W)\ - Subtract (FindSetLeftBit (DMA_TAG##W), 1, DMA_TO) + DMA_TO = FindSetLeftBit (DMA_TAG##W) - 1 #endif -- cgit v1.2.3