Attention is currently required from: Lance Zhao, Tim Wawrzynczak. Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60719 )
Change subject: arch/x86/acpi: Replace And() with ASL 2.0 syntax ......................................................................
arch/x86/acpi: Replace And() with ASL 2.0 syntax
Change-Id: I21b954ce62259bb77d88775c3086cfac17dd90c7 Signed-off-by: Felix Singer felixsinger@posteo.net --- M src/arch/x86/acpi/debug.asl 1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/19/60719/1
diff --git a/src/arch/x86/acpi/debug.asl b/src/arch/x86/acpi/debug.asl index 7b0aec4..e6dfe6a 100644 --- a/src/arch/x86/acpi/debug.asl +++ b/src/arch/x86/acpi/debug.asl @@ -50,9 +50,9 @@ */ Method(THRE) { - and(CLSR, 0x20, local0) + local0 = CLSR & 0x20 while (local0 == 0) { - and(CLSR, 0x20, local0) + local0 = CLSR & 0x20 } }
@@ -84,7 +84,7 @@ */ Method(DBGN, 1) { - and(Arg0, 0x0f, Local0) + Local0 = Arg0 & 0x0f if (Local0 < 10) { Local0 += 0x30 } else {