summaryrefslogtreecommitdiff
path: root/source/compiler/asllength.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2018-09-27 16:43:02 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2018-09-27 16:43:02 +0000
commit73d55968743da26d1ff63e9939f191d217aea206 (patch)
treeffb27de4d7c207dd7aeebd04b24e04f85d23b8dc /source/compiler/asllength.c
parentc6014c64fcfd099d0087da3509e8a623d2c30209 (diff)
Notes
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