summaryrefslogtreecommitdiff
path: root/include/acoutput.h
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2009-12-14 22:07:33 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2009-12-14 22:07:33 +0000
commitdeca274c44eb2d731761ba35813f64bdbdc734df (patch)
treef44ff7d55387c0db90e95e80289d7ed0525b8dd8 /include/acoutput.h
parent1b40f7cf3cd1180573e2d9ec6cd169e887b720e0 (diff)
Import ACPICA 20091214.vendor/acpica/20091214
Notes
svn path=/vendor-sys/acpica/dist/; revision=200549 svn path=/vendor-sys/acpica/20091214/; revision=200550; tag=vendor/acpica/20091214
Diffstat (limited to 'include/acoutput.h')
-rw-r--r--include/acoutput.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/acoutput.h b/include/acoutput.h
index 2b796b541a61..4f4b1d9c69dd 100644
--- a/include/acoutput.h
+++ b/include/acoutput.h
@@ -158,7 +158,8 @@
#define ACPI_LV_INIT 0x00000001
#define ACPI_LV_DEBUG_OBJECT 0x00000002
#define ACPI_LV_INFO 0x00000004
-#define ACPI_LV_ALL_EXCEPTIONS 0x00000007
+#define ACPI_LV_REPAIR 0x00000008
+#define ACPI_LV_ALL_EXCEPTIONS 0x0000000F
/* Trace verbosity level 1 [Standard Trace Level] */
@@ -217,6 +218,7 @@
#define ACPI_DB_INIT ACPI_DEBUG_LEVEL (ACPI_LV_INIT)
#define ACPI_DB_DEBUG_OBJECT ACPI_DEBUG_LEVEL (ACPI_LV_DEBUG_OBJECT)
#define ACPI_DB_INFO ACPI_DEBUG_LEVEL (ACPI_LV_INFO)
+#define ACPI_DB_REPAIR ACPI_DEBUG_LEVEL (ACPI_LV_REPAIR)
#define ACPI_DB_ALL_EXCEPTIONS ACPI_DEBUG_LEVEL (ACPI_LV_ALL_EXCEPTIONS)
/* Trace level -- also used in the global "DebugLevel" */
@@ -248,8 +250,8 @@
/* Defaults for DebugLevel, debug and normal */
-#define ACPI_DEBUG_DEFAULT (ACPI_LV_INIT | ACPI_LV_DEBUG_OBJECT)
-#define ACPI_NORMAL_DEFAULT (ACPI_LV_INIT | ACPI_LV_DEBUG_OBJECT)
+#define ACPI_DEBUG_DEFAULT (ACPI_LV_INIT | ACPI_LV_DEBUG_OBJECT | ACPI_LV_REPAIR)
+#define ACPI_NORMAL_DEFAULT (ACPI_LV_INIT | ACPI_LV_DEBUG_OBJECT | ACPI_LV_REPAIR)
#define ACPI_DEBUG_ALL (ACPI_LV_AML_DISASSEMBLE | ACPI_LV_ALL_EXCEPTIONS | ACPI_LV_ALL)