summaryrefslogtreecommitdiff
path: root/source/compiler/dttable2.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/compiler/dttable2.c')
-rw-r--r--source/compiler/dttable2.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/compiler/dttable2.c b/source/compiler/dttable2.c
index 785bc7a113cc..3f97037763f3 100644
--- a/source/compiler/dttable2.c
+++ b/source/compiler/dttable2.c
@@ -1288,13 +1288,13 @@ DtCompileS3pt (
Status = DtCompileTable (PFieldList, AcpiDmTableInfoS3pt,
- &Gbl_RootTable);
+ &AslGbl_RootTable);
if (ACPI_FAILURE (Status))
{
return (Status);
}
- DtPushSubtable (Gbl_RootTable);
+ DtPushSubtable (AslGbl_RootTable);
while (*PFieldList)
{
@@ -2274,10 +2274,10 @@ DtCompileGeneric (
Info = DtGetGenericTableInfo ((*PFieldList)->Name);
if (!Info)
{
- sprintf (MsgBuffer, "Generic data type \"%s\" not found",
+ sprintf (AslGbl_MsgBuffer, "Generic data type \"%s\" not found",
(*PFieldList)->Name);
DtNameError (ASL_ERROR, ASL_MSG_INVALID_FIELD_NAME,
- (*PFieldList), MsgBuffer);
+ (*PFieldList), AslGbl_MsgBuffer);
*PFieldList = (*PFieldList)->Next;
continue;
@@ -2299,10 +2299,10 @@ DtCompileGeneric (
if (Status == AE_NOT_FOUND)
{
- sprintf (MsgBuffer, "Generic data type \"%s\" not found",
+ sprintf (AslGbl_MsgBuffer, "Generic data type \"%s\" not found",
(*PFieldList)->Name);
DtNameError (ASL_ERROR, ASL_MSG_INVALID_FIELD_NAME,
- (*PFieldList), MsgBuffer);
+ (*PFieldList), AslGbl_MsgBuffer);
}
}
}