diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-12-11 21:46:42 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-12-12 21:44:41 +0000 |
commit | 43b5730962d7898db040eb7004aa6fb655188e03 (patch) | |
tree | 142b8a30c44b02f2047cdd587a52ae158c9940bf /src/soc/intel/baytrail/acpi | |
parent | 5cbf2be43acee0f2e6e1baffbd2fc2eee0d316ee (diff) |
soc/intel/acpi: Replace Decrement(a) with ASL 2.0 syntax
Replace `Decrement (a)` with `a--`.
Change-Id: I5c9290aaa9fc969368d5934e4f48a75d915ca5ff
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70592
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/soc/intel/baytrail/acpi')
-rw-r--r-- | src/soc/intel/baytrail/acpi/dptf/charger.asl | 2 | ||||
-rw-r--r-- | src/soc/intel/baytrail/acpi/dptf/cpu.asl | 4 | ||||
-rw-r--r-- | src/soc/intel/baytrail/acpi/irqlinks.asl | 16 |
3 files changed, 11 insertions, 11 deletions
diff --git a/src/soc/intel/baytrail/acpi/dptf/charger.asl b/src/soc/intel/baytrail/acpi/dptf/charger.asl index b8c6d143e1..4169b94f69 100644 --- a/src/soc/intel/baytrail/acpi/dptf/charger.asl +++ b/src/soc/intel/baytrail/acpi/dptf/charger.asl @@ -27,7 +27,7 @@ Device (TCHG) { /* Convert size of PPSS table to index */ Store (SizeOf (\_SB.CHPS), Local0) - Decrement (Local0) + Local0-- /* Check if charging is disabled (AC removed) */ If (LEqual (\PWRS, Zero)) { diff --git a/src/soc/intel/baytrail/acpi/dptf/cpu.asl b/src/soc/intel/baytrail/acpi/dptf/cpu.asl index cd6a572a1f..8e43f6736f 100644 --- a/src/soc/intel/baytrail/acpi/dptf/cpu.asl +++ b/src/soc/intel/baytrail/acpi/dptf/cpu.asl @@ -74,7 +74,7 @@ Device (TCPU) { If (CondRefOf (\_SB.CP00._TSS)) { Store (SizeOf (\_SB.CP00._TSS ()), Local0) - Decrement (Local0) + Local0-- Return (Local0) } Else { Return (0) @@ -117,7 +117,7 @@ Device (TCPU) Return (\_SB.MPDL) } ElseIf (CondRefOf (\_SB.CP00._PSS)) { Store (SizeOf (\_SB.CP00._PSS ()), Local0) - Decrement (Local0) + Local0-- Return (Local0) } Else { Return (0) diff --git a/src/soc/intel/baytrail/acpi/irqlinks.asl b/src/soc/intel/baytrail/acpi/irqlinks.asl index ef3bdd4bcf..a2f75fad8b 100644 --- a/src/soc/intel/baytrail/acpi/irqlinks.asl +++ b/src/soc/intel/baytrail/acpi/irqlinks.asl @@ -44,7 +44,7 @@ Device (LNKA) /* Which bit is set? */ FindSetRightBit(IRQ0, Local0) - Decrement(Local0) + Local0-- Store(Local0, PRTA) } @@ -103,7 +103,7 @@ Device (LNKB) /* Which bit is set? */ FindSetRightBit(IRQ0, Local0) - Decrement(Local0) + Local0-- Store(Local0, PRTB) } @@ -162,7 +162,7 @@ Device (LNKC) /* Which bit is set? */ FindSetRightBit(IRQ0, Local0) - Decrement(Local0) + Local0-- Store(Local0, PRTC) } @@ -221,7 +221,7 @@ Device (LNKD) /* Which bit is set? */ FindSetRightBit(IRQ0, Local0) - Decrement(Local0) + Local0-- Store(Local0, PRTD) } @@ -280,7 +280,7 @@ Device (LNKE) /* Which bit is set? */ FindSetRightBit(IRQ0, Local0) - Decrement(Local0) + Local0-- Store(Local0, PRTE) } @@ -339,7 +339,7 @@ Device (LNKF) /* Which bit is set? */ FindSetRightBit(IRQ0, Local0) - Decrement(Local0) + Local0-- Store(Local0, PRTF) } @@ -398,7 +398,7 @@ Device (LNKG) /* Which bit is set? */ FindSetRightBit(IRQ0, Local0) - Decrement(Local0) + Local0-- Store(Local0, PRTG) } @@ -457,7 +457,7 @@ Device (LNKH) /* Which bit is set? */ FindSetRightBit(IRQ0, Local0) - Decrement(Local0) + Local0-- Store(Local0, PRTH) } |