Attention is currently required from: Lance Zhao, Tim Wawrzynczak. Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60718 )
Change subject: arch/x86/acpi: Replace ShiftLeft() with ASL 2.0 syntax ......................................................................
arch/x86/acpi: Replace ShiftLeft() with ASL 2.0 syntax
Change-Id: I493d686fb122fb47f0b4dcf34e3635518770f97f Signed-off-by: Felix Singer felixsinger@posteo.net --- M src/arch/x86/acpi/globutil.asl 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/18/60718/1
diff --git a/src/arch/x86/acpi/globutil.asl b/src/arch/x86/acpi/globutil.asl index 2ea4f96..e9bbcfe 100644 --- a/src/arch/x86/acpi/globutil.asl +++ b/src/arch/x86/acpi/globutil.asl @@ -94,7 +94,7 @@ Store(0, Local0) if (ARG0 != 0) { Store(1, Local1) - ShiftLeft(Local1, ARG0, Local0) + Local0 = Local1 << ARG0 } Return(Local0) }