summaryrefslogtreecommitdiff
path: root/source/compiler/dtutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/compiler/dtutils.c')
-rw-r--r--source/compiler/dtutils.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/source/compiler/dtutils.c b/source/compiler/dtutils.c
index fe079eacdff0..4018a9bea9eb 100644
--- a/source/compiler/dtutils.c
+++ b/source/compiler/dtutils.c
@@ -201,7 +201,7 @@ DtError (
FieldObject->Line,
FieldObject->ByteOffset,
FieldObject->Column,
- Gbl_Files[ASL_FILE_INPUT].Filename, ExtraMessage);
+ AslGbl_Files[ASL_FILE_INPUT].Filename, ExtraMessage);
}
else
{
@@ -239,7 +239,7 @@ DtNameError (
case ASL_WARNING2:
case ASL_WARNING3:
- if (Gbl_WarningLevel < Level)
+ if (AslGbl_WarningLevel < Level)
{
return;
}
@@ -257,7 +257,7 @@ DtNameError (
FieldObject->Line,
FieldObject->ByteOffset,
FieldObject->NameColumn,
- Gbl_Files[ASL_FILE_INPUT].Filename, ExtraMessage);
+ AslGbl_Files[ASL_FILE_INPUT].Filename, ExtraMessage);
}
else
{
@@ -640,8 +640,8 @@ DtGetFieldLength (
else
{ /* At this point, this is a fatal error */
- sprintf (MsgBuffer, "Expected \"%s\"", Info->Name);
- DtFatal (ASL_MSG_COMPILER_INTERNAL, NULL, MsgBuffer);
+ sprintf (AslGbl_MsgBuffer, "Expected \"%s\"", Info->Name);
+ DtFatal (ASL_MSG_COMPILER_INTERNAL, NULL, AslGbl_MsgBuffer);
return (0);
}
break;
@@ -672,8 +672,8 @@ DtGetFieldLength (
else
{ /* At this point, this is a fatal error */
- sprintf (MsgBuffer, "Expected \"%s\"", Info->Name);
- DtFatal (ASL_MSG_COMPILER_INTERNAL, NULL, MsgBuffer);
+ sprintf (AslGbl_MsgBuffer, "Expected \"%s\"", Info->Name);
+ DtFatal (ASL_MSG_COMPILER_INTERNAL, NULL, AslGbl_MsgBuffer);
return (0);
}
break;
@@ -768,7 +768,7 @@ DtSetTableChecksum (
UINT8 OldSum;
- DtWalkTableTree (Gbl_RootTable, DtSum, NULL, &Checksum);
+ DtWalkTableTree (AslGbl_RootTable, DtSum, NULL, &Checksum);
OldSum = *ChecksumPointer;
Checksum = (UINT8) (Checksum - OldSum);
@@ -800,7 +800,7 @@ DtSetTableLength (
DT_SUBTABLE *ChildTable;
- ParentTable = Gbl_RootTable;
+ ParentTable = AslGbl_RootTable;
ChildTable = NULL;
if (!ParentTable)
@@ -838,7 +838,7 @@ DtSetTableLength (
{
ChildTable = ParentTable;
- if (ChildTable == Gbl_RootTable)
+ if (ChildTable == AslGbl_RootTable)
{
break;
}
@@ -907,7 +907,7 @@ DtWalkTableTree (
else
{
ChildTable = ParentTable;
- if (ChildTable == Gbl_RootTable)
+ if (ChildTable == AslGbl_RootTable)
{
break;
}