Felix Singer has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60645 )
Change subject: arch/x86/acpi: Replace Add(a,b,c) with ASL 2.0 syntax ......................................................................
arch/x86/acpi: Replace Add(a,b,c) with ASL 2.0 syntax
Replace `Add (a, b, c)` with `c = a + b`.
Change-Id: Id2a0b13522761e7113d1dc5b78d0dfd19a6cfd94 Signed-off-by: Felix Singer felixsinger@posteo.net --- M src/arch/x86/acpi/debug.asl 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/45/60645/1
diff --git a/src/arch/x86/acpi/debug.asl b/src/arch/x86/acpi/debug.asl index 60f1595..fe6bda2 100644 --- a/src/arch/x86/acpi/debug.asl +++ b/src/arch/x86/acpi/debug.asl @@ -86,9 +86,9 @@ { and(Arg0, 0x0f, Local0) if (LLess(Local0, 10)) { - add(Local0, 0x30, Local0) + Local0 += 0x30 } else { - add(Local0, 0x37, Local0) + Local0 += 0x37 } OUTC(Local0) }