summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/arch/x86/acpi/debug.asl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/acpi/debug.asl b/src/arch/x86/acpi/debug.asl
index 3f04b03c37..41d123520e 100644
--- a/src/arch/x86/acpi/debug.asl
+++ b/src/arch/x86/acpi/debug.asl
@@ -77,9 +77,9 @@ Method(DBGN, 1)
{
and(Arg0, 0x0f, Local0)
if (LLess(Local0, 10)) {
- add(Local0, 0x30, Local0)
+ Local0 += 0x30
} else {
- add(Local0, 0x37, Local0)
+ Local0 += 0x37
}
OUTC(Local0)
}