summaryrefslogtreecommitdiff
path: root/source/compiler/asllength.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/compiler/asllength.c')
-rw-r--r--source/compiler/asllength.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/compiler/asllength.c b/source/compiler/asllength.c
index 1d4c9d0a9416..696dc2424128 100644
--- a/source/compiler/asllength.c
+++ b/source/compiler/asllength.c
@@ -446,7 +446,7 @@ CgGenerateAmlLengths (
{
case PARSEOP_DEFINITION_BLOCK:
- Gbl_TableLength = sizeof (ACPI_TABLE_HEADER) + Op->Asl.AmlSubtreeLength;
+ AslGbl_TableLength = sizeof (ACPI_TABLE_HEADER) + Op->Asl.AmlSubtreeLength;
break;
case PARSEOP_NAMESEG:
@@ -519,7 +519,7 @@ CgGenerateAmlLengths (
case PARSEOP_EXTERNAL:
- if (Gbl_DoExternals == TRUE)
+ if (AslGbl_DoExternals == TRUE)
{
CgGenerateAmlOpcodeLength (Op);
}
@@ -568,6 +568,6 @@ LnAdjustLengthToRoot (
/* Adjust the global table length */
- Gbl_TableLength -= LengthDelta;
+ AslGbl_TableLength -= LengthDelta;
}
#endif