diff options
author | jkim <jkim@FreeBSD.org> | 2014-04-25 16:53:42 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2014-04-25 16:53:42 +0000 |
commit | 34dc9d28dcb64ffb397ae86712fcea0cce546203 (patch) | |
tree | 643f58d38011b3076bfc6a234d83f22c69487b8c /source/components/utilities/utglobal.c | |
parent | 36570d433866fe6dd6cfd1efeaa154ed7ade2121 (diff) | |
download | FreeBSD-src-34dc9d28dcb64ffb397ae86712fcea0cce546203.zip FreeBSD-src-34dc9d28dcb64ffb397ae86712fcea0cce546203.tar.gz |
Import ACPICA 20140424.
Diffstat (limited to 'source/components/utilities/utglobal.c')
-rw-r--r-- | source/components/utilities/utglobal.c | 30 |
1 files changed, 1 insertions, 29 deletions
diff --git a/source/components/utilities/utglobal.c b/source/components/utilities/utglobal.c index 0b029c8..c89d414 100644 --- a/source/components/utilities/utglobal.c +++ b/source/components/utilities/utglobal.c @@ -58,31 +58,6 @@ * ******************************************************************************/ -/* Debug output control masks */ - -#ifdef ACPI_DEBUG_OUTPUT -UINT32 AcpiDbgLevel = ACPI_DEBUG_DEFAULT; -#else -UINT32 AcpiDbgLevel = ACPI_NORMAL_DEFAULT; -#endif - -UINT32 AcpiDbgLayer = ACPI_COMPONENT_DEFAULT; - -/* AcpiGbl_FADT is a local copy of the FADT, converted to a common format. */ - -ACPI_TABLE_FADT AcpiGbl_FADT; -UINT32 AcpiGbl_TraceFlags; -ACPI_NAME AcpiGbl_TraceMethodName; -BOOLEAN AcpiGbl_SystemAwakeAndRunning; -UINT32 AcpiCurrentGpeCount; - -/* - * ACPI 5.0 introduces the concept of a "reduced hardware platform", meaning - * that the ACPI hardware is no longer required. A flag in the FADT indicates - * a reduced HW machine, and that flag is duplicated here for convenience. - */ -BOOLEAN AcpiGbl_ReducedHardware; - /* Various state name strings */ const char *AcpiGbl_SleepStateNames[ACPI_S_STATE_COUNT] = @@ -310,7 +285,6 @@ AcpiUtInitGlobals ( AcpiGbl_AcpiHardwarePresent = TRUE; AcpiGbl_LastOwnerIdIndex = 0; AcpiGbl_NextOwnerIdOffset = 0; - AcpiGbl_TraceMethodName = 0; AcpiGbl_TraceDbgLevel = 0; AcpiGbl_TraceDbgLayer = 0; AcpiGbl_DebuggerConfiguration = DEBUGGER_THREADING; @@ -351,9 +325,7 @@ AcpiUtInitGlobals ( AcpiGbl_DisableMemTracking = FALSE; #endif -#ifdef ACPI_DEBUGGER - AcpiGbl_DbTerminateThreads = FALSE; -#endif + ACPI_DEBUGGER_EXEC (AcpiGbl_DbTerminateThreads = FALSE); return_ACPI_STATUS (AE_OK); } |