summaryrefslogtreecommitdiff
path: root/source/compiler/dttable2.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/dttable2.c
parentc6014c64fcfd099d0087da3509e8a623d2c30209 (diff)
Notes
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);
}
}
}