summaryrefslogtreecommitdiffstats
path: root/src/mainboard/lenovo/x60/acpi/gpe.asl
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-10-04 14:57:09 +0200
committerMichael Niewöhner <foss@mniewoehner.de>2021-01-24 21:40:25 +0000
commit9759dc334e526003fc342db309f6a447458d06c0 (patch)
tree45a49143915d61c6c1021c4dc693ef674abf77d6 /src/mainboard/lenovo/x60/acpi/gpe.asl
parent328a023795bd0cd578d806ab81412db9bee29ff2 (diff)
downloadcoreboot-9759dc334e526003fc342db309f6a447458d06c0.tar.gz
coreboot-9759dc334e526003fc342db309f6a447458d06c0.tar.bz2
coreboot-9759dc334e526003fc342db309f6a447458d06c0.zip
mb/lenovo/x60: Convert *.asl to ASL 2.0 syntax
Generated 'build/dsdt.dsl' are identical. Change-Id: I305561625d973093645236c77ef13a96ab780f94 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46011 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/mainboard/lenovo/x60/acpi/gpe.asl')
-rw-r--r--src/mainboard/lenovo/x60/acpi/gpe.asl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/lenovo/x60/acpi/gpe.asl b/src/mainboard/lenovo/x60/acpi/gpe.asl
index 62e7b37bb470..998463686067 100644
--- a/src/mainboard/lenovo/x60/acpi/gpe.asl
+++ b/src/mainboard/lenovo/x60/acpi/gpe.asl
@@ -5,8 +5,8 @@ Scope (\_GPE)
Method(_L18, 0, NotSerialized)
{
/* Read EC register to clear wake status */
- Store(\_SB.PCI0.LPCB.EC.WAKE, Local0)
+ Local0 = \_SB.PCI0.LPCB.EC.WAKE
/* So that we don't get a warning that Local0 is unused. */
- Increment (Local0)
+ Local0++
}
}