diff options
author | jkim <jkim@FreeBSD.org> | 2009-06-01 21:02:40 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2009-06-01 21:02:40 +0000 |
commit | 02935ea0ac5fb3dfc5e452b2a18288d7e523dc1b (patch) | |
tree | 73c1236e3073233e35dc547eb58ea55eafda9edc /utilities/utinit.c | |
parent | 1a9fa9cb677971ec2e9ed876d5403bda13d88c9f (diff) | |
download | FreeBSD-src-02935ea0ac5fb3dfc5e452b2a18288d7e523dc1b.zip FreeBSD-src-02935ea0ac5fb3dfc5e452b2a18288d7e523dc1b.tar.gz |
Import ACPICA 20090521 (with three patches from ACPICA GIT).
Diffstat (limited to 'utilities/utinit.c')
-rw-r--r-- | utilities/utinit.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/utilities/utinit.c b/utilities/utinit.c index f13e423..8e8a83b 100644 --- a/utilities/utinit.c +++ b/utilities/utinit.c @@ -1,7 +1,6 @@ /****************************************************************************** * * Module Name: utinit - Common ACPI subsystem initialization - * $Revision: 1.135 $ * *****************************************************************************/ @@ -9,7 +8,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999 - 2007, Intel Corp. + * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp. * All rights reserved. * * 2. License @@ -118,6 +117,7 @@ #define __UTINIT_C__ #include "acpi.h" +#include "accommon.h" #include "acnamesp.h" #include "acevents.h" #include "actables.h" @@ -216,9 +216,12 @@ AcpiUtSubsystemShutdown ( ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n")); +#ifndef ACPI_ASL_COMPILER + /* Close the AcpiEvent Handling */ AcpiEvTerminate (); +#endif /* Close the Namespace */ |