diff options
author | msmith <msmith@FreeBSD.org> | 2001-11-28 04:29:40 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2001-11-28 04:29:40 +0000 |
commit | 78af3c27c3ad5c006fccb4da47d94b0b4a6e41a5 (patch) | |
tree | 0c31c343a3bcd338031dfa7ffecb38450cabc5ef /sys/contrib/dev/acpica/utinit.c | |
parent | d03f718884612e91eef85c79832b389a30988784 (diff) | |
parent | fe76969b7da935c578de24725d0e86947a339135 (diff) | |
download | FreeBSD-src-78af3c27c3ad5c006fccb4da47d94b0b4a6e41a5.zip FreeBSD-src-78af3c27c3ad5c006fccb4da47d94b0b4a6e41a5.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r87031,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'sys/contrib/dev/acpica/utinit.c')
-rw-r--r-- | sys/contrib/dev/acpica/utinit.c | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/sys/contrib/dev/acpica/utinit.c b/sys/contrib/dev/acpica/utinit.c index 35c9b4f..40a4294 100644 --- a/sys/contrib/dev/acpica/utinit.c +++ b/sys/contrib/dev/acpica/utinit.c @@ -1,7 +1,7 @@ /****************************************************************************** * * Module Name: utinit - Common ACPI subsystem initialization - * $Revision: 102 $ + * $Revision: 103 $ * *****************************************************************************/ @@ -121,8 +121,6 @@ #include "achware.h" #include "acnamesp.h" #include "acevents.h" -#include "acparser.h" -#include "acdispat.h" #define _COMPONENT ACPI_UTILITIES MODULE_NAME ("utinit") @@ -322,7 +320,6 @@ AcpiUtSubsystemShutdown (void) AcpiGbl_Shutdown = TRUE; ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Shutting down ACPI Subsystem...\n")); - /* Close the Namespace */ AcpiNsTerminate (); @@ -335,17 +332,9 @@ AcpiUtSubsystemShutdown (void) AcpiUtTerminate (); - /* Flush the local cache(s) */ - - AcpiUtDeleteGenericStateCache (); - AcpiUtDeleteObjectCache (); - AcpiDsDeleteWalkStateCache (); - - /* Close the Parser */ - - /* TBD: [Restructure] AcpiPsTerminate () */ + /* Purge the local caches */ - AcpiPsDeleteParseCache (); + AcpiPurgeCachedObjects (); /* Debug only - display leftover memory allocation, if any */ |