aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/dev/acpica/acoutput.h
diff options
context:
space:
mode:
authorMitsuru IWASAKI <iwasaki@FreeBSD.org>2002-07-09 17:51:31 +0000
committerMitsuru IWASAKI <iwasaki@FreeBSD.org>2002-07-09 17:51:31 +0000
commit7174287062b13041257019f445469f00eaaf9c76 (patch)
treeea70a54a7d2f53270d0147b285a5fa912b760051 /sys/contrib/dev/acpica/acoutput.h
parent3f12fee6bc6478d15b9d7d5228e3d71e1c6e9af4 (diff)
downloadsrc-7174287062b13041257019f445469f00eaaf9c76.tar.gz
src-7174287062b13041257019f445469f00eaaf9c76.zip
Vendor import of the Intel ACPI CA 20020611 drop.
Notes
Notes: svn path=/vendor-sys/acpica/dist/; revision=99679
Diffstat (limited to 'sys/contrib/dev/acpica/acoutput.h')
-rw-r--r--sys/contrib/dev/acpica/acoutput.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/sys/contrib/dev/acpica/acoutput.h b/sys/contrib/dev/acpica/acoutput.h
index 2bfb7a51b8ef..923cd5e9e639 100644
--- a/sys/contrib/dev/acpica/acoutput.h
+++ b/sys/contrib/dev/acpica/acoutput.h
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acoutput.h -- debug output
- * $Revision: 86 $
+ * $Revision: 87 $
*
*****************************************************************************/
@@ -196,6 +196,16 @@
#define ACPI_LV_INTERRUPTS 0x08000000
#define ACPI_LV_VERBOSITY3 0x0F000000 | ACPI_LV_VERBOSITY2
+/* Exceptionally verbose output -- also used in the global "DebugLevel" */
+
+#define ACPI_LV_AML_DISASSEMBLE 0x10000000
+#define ACPI_LV_VERBOSE_INFO 0x20000000
+#define ACPI_LV_FULL_TABLES 0x40000000
+#define ACPI_LV_EVENTS 0x80000000
+
+#define ACPI_LV_VERBOSE 0xF0000000
+
+
/*
* Debug level macros that are used in the DEBUG_PRINT macros
*/
@@ -236,17 +246,8 @@
#define ACPI_DB_MUTEX ACPI_DEBUG_LEVEL (ACPI_LV_MUTEX)
#define ACPI_DB_INIT ACPI_DEBUG_LEVEL (ACPI_LV_INIT)
-#define ACPI_DB_ALL ACPI_DEBUG_LEVEL (0x0FFFFF80)
-
-
-/* Exceptionally verbose output -- also used in the global "DebugLevel" */
-
-#define ACPI_DB_AML_DISASSEMBLE 0x10000000
-#define ACPI_DB_VERBOSE_INFO 0x20000000
-#define ACPI_DB_FULL_TABLES 0x40000000
-#define ACPI_DB_EVENTS 0x80000000
+#define ACPI_DB_ALL ACPI_DEBUG_LEVEL (ACPI_LV_ALL)
-#define ACPI_DB_VERBOSE 0xF0000000
/* Defaults for DebugLevel, debug and normal */