aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2007-03-14 19:56:10 +0000
committerNate Lawson <njl@FreeBSD.org>2007-03-14 19:56:10 +0000
commit929a5cf650ffe3c3abb07076cc34e9e4470b2c7f (patch)
tree5b3fe43965001fb93c53d9d076a55b10ea682857 /sys
parenteef1df45d37657cb1a1783232ab0b5407619eec5 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/acpica/Osd/OsdDebug.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/acpica/Osd/OsdDebug.c b/sys/dev/acpica/Osd/OsdDebug.c
index 4e28a7ca7465..946e875ccd21 100644
--- a/sys/dev/acpica/Osd/OsdDebug.c
+++ b/sys/dev/acpica/Osd/OsdDebug.c
@@ -78,9 +78,11 @@ AcpiOsSignal(UINT32 Function, void *Info)
switch (Function) {
case ACPI_SIGNAL_FATAL:
fatal = (ACPI_SIGNAL_FATAL_INFO *)Info;
- printf("ACPI fatal signal, type 0x%x code 0x%x argument 0x%x",
+ printf("ACPI fatal signal, type 0x%x code 0x%x argument 0x%x",
fatal->Type, fatal->Code, fatal->Argument);
+#ifdef ACPI_DEBUG
kdb_enter("AcpiOsSignal");
+#endif
break;
case ACPI_SIGNAL_BREAKPOINT: