mirror of
https://github.com/acpica/acpica/
synced 2025-02-24 01:14:46 +03:00
All table management functions moved to new Table subcomponent
date 99.10.13.22.24.00; author rmoore1; state Exp;
This commit is contained in:
parent
5b8ba07945
commit
728afe4d23
@ -120,6 +120,7 @@
|
||||
#include <acpiobj.h>
|
||||
#include <interpreter.h>
|
||||
#include <namespace.h>
|
||||
#include <tables.h>
|
||||
|
||||
|
||||
#define _THIS_MODULE "cmdelete.c"
|
||||
@ -258,7 +259,7 @@ CmUpdateObjectReference (
|
||||
return_ACPI_STATUS (AE_OK);
|
||||
}
|
||||
|
||||
if (NsIsInSystemTable (Object))
|
||||
if (TbSystemTablePointer (Object))
|
||||
{
|
||||
DEBUG_PRINT (ACPI_INFO, ("CmUpdateObjectReference: **** Object %p is Pcode Ptr\n",
|
||||
Object));
|
||||
@ -549,7 +550,7 @@ CmDeleteInternalObj (
|
||||
|
||||
if (ObjPointer)
|
||||
{
|
||||
if (!NsIsInSystemTable (ObjPointer))
|
||||
if (!TbSystemTablePointer (ObjPointer))
|
||||
{
|
||||
DEBUG_PRINT (ACPI_INFO, ("CmDeleteInternalObj: Deleting Obj Ptr %p \n",
|
||||
ObjPointer));
|
||||
@ -610,7 +611,7 @@ CmDeleteInternalObject (
|
||||
return_VOID;
|
||||
}
|
||||
|
||||
if (NsIsInSystemTable (Object))
|
||||
if (TbSystemTablePointer (Object))
|
||||
{
|
||||
DEBUG_PRINT (ACPI_INFO, ("CmDeleteInternalObject: **** Object %p is Pcode Ptr\n",
|
||||
Object));
|
||||
|
Loading…
x
Reference in New Issue
Block a user