From 3c9291b3359d91d7238ed1886f4d87d635a6df55 Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Fri, 16 Dec 2022 02:43:56 +0100 Subject: tree: Replace ShiftLeft(a,b,c) with ASL 2.0 syntax Replace `ShiftLeft (a, b, c)` with `c = a << b`. Change-Id: Ibd25a05f49f79e80592482a1b0532334f727af58 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/70841 Reviewed-by: Eric Lai Tested-by: build bot (Jenkins) --- src/ec/lenovo/h8/acpi/thinkpad.asl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ec/lenovo/h8/acpi') diff --git a/src/ec/lenovo/h8/acpi/thinkpad.asl b/src/ec/lenovo/h8/acpi/thinkpad.asl index e1c979eaae..28431e8f03 100644 --- a/src/ec/lenovo/h8/acpi/thinkpad.asl +++ b/src/ec/lenovo/h8/acpi/thinkpad.asl @@ -51,7 +51,7 @@ Device (HKEY) /* Report event */ Method (RHK, 1, NotSerialized) { - ShiftLeft (One, Arg0 - 1, Local0) + Local0 = One << (Arg0 - 1) If (EMSK & Local0) { BTN = Arg0 Notify (HKEY, 0x80) @@ -60,7 +60,7 @@ Device (HKEY) /* Report tablet */ Method (RTAB, 1, NotSerialized) { - ShiftLeft (One, Arg0 - 1, Local0) + Local0 = One << (Arg0 - 1) If (ETAB & Local0) { BTAB = Arg0 Notify (HKEY, 0x80) @@ -84,7 +84,7 @@ Device (HKEY) /* Enable/disable event. */ Method (MHKM, 2, NotSerialized) { If (Arg0 <= 0x20) { - ShiftLeft (One, Arg0 - 1, Local0) + Local0 = One << (Arg0 - 1) If (Arg1) { Or (DHKN, Local0, DHKN) -- cgit v1.2.3