New object type names

date	99.09.22.21.56.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:14:51 +00:00
parent 0bea6ed728
commit 2e31850954

View File

@ -216,7 +216,7 @@ NsPushMethodScope (
{
if (Gbl_CurrentScope < &Gbl_ScopeStack[MAX_SCOPE_NESTING-1]) /* check for overflow */
{
NsPushCurrentScope (((NAME_TABLE_ENTRY *) NewScope)->Scope, TYPE_Method);
NsPushCurrentScope (((NAME_TABLE_ENTRY *) NewScope)->Scope, ACPI_TYPE_Method);
}
else
@ -274,7 +274,7 @@ NsPopCurrent (
DEBUG_PRINT (TRACE_EXEC, ("Popped %d\n", (Gbl_CurrentScope+1)->Type));
if ((TYPE_Any == Type) || (Type == (Gbl_CurrentScope + 1)->Type))
if ((ACPI_TYPE_Any == Type) || (Type == (Gbl_CurrentScope + 1)->Type))
{
DEBUG_PRINT (TRACE_EXEC, ("Found %d\n", Type));
return_VALUE (Count);