summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/arch/x86/acpi/debug.asl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/x86/acpi/debug.asl b/src/arch/x86/acpi/debug.asl
index 728193e44f..70fd2ecb53 100644
--- a/src/arch/x86/acpi/debug.asl
+++ b/src/arch/x86/acpi/debug.asl
@@ -41,9 +41,9 @@ Method(DINI)
*/
Method(THRE)
{
- and(CLSR, 0x20, local0)
+ local0 = CLSR & 0x20
while (local0 == 0) {
- and(CLSR, 0x20, local0)
+ local0 = CLSR & 0x20
}
}
@@ -75,7 +75,7 @@ Method(OUTC, 1)
*/
Method(DBGN, 1)
{
- and(Arg0, 0x0f, Local0)
+ Local0 = Arg0 & 0x0f
if (Local0 < 10) {
Local0 += 0x30
} else {