diff options
author | Felix Singer <felixsinger@posteo.net> | 2021-12-31 13:52:31 +0100 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-01-01 14:09:14 +0000 |
commit | c8c312c7e8ae6da24a72489c6faef2bea2a879cf (patch) | |
tree | 219783c042c97c1b55b31f1e594059a81e79cfa7 /src/soc | |
parent | 42fcf5acfdd43136827460fb1044b0a4d259ee02 (diff) |
soc/intel/apollolake/acpi: Replace Increment() with ASL 2.0 syntax
Replace `Increment(a)` with `a++`.
Change-Id: I40d5df41e2e077cb9d3e7f3945f0dbae18382a28
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/60581
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/apollolake/acpi/pcie_port.asl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/intel/apollolake/acpi/pcie_port.asl b/src/soc/intel/apollolake/acpi/pcie_port.asl index 710051b828..34e2a73042 100644 --- a/src/soc/intel/apollolake/acpi/pcie_port.asl +++ b/src/soc/intel/apollolake/acpi/pcie_port.asl @@ -75,7 +75,7 @@ PowerResource (PXP, 0, 0) Break } Sleep (16) - Increment (Local0) + Local0++ } } /* End PDS condition check */ } @@ -95,7 +95,7 @@ PowerResource (PXP, 0, 0) Break } Sleep (16) - Increment (Local0) + Local0++ } Store (1, BDQA) /* Set BLKDQDA to 1 */ Store (1, BPLL) /* Set BLKPLLEN to 1 */ |