summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica/Osd/OsdDebug.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/acpica/Osd/OsdDebug.c')
-rw-r--r--sys/dev/acpica/Osd/OsdDebug.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/acpica/Osd/OsdDebug.c b/sys/dev/acpica/Osd/OsdDebug.c
index 97b69bd..a7f7153 100644
--- a/sys/dev/acpica/Osd/OsdDebug.c
+++ b/sys/dev/acpica/Osd/OsdDebug.c
@@ -33,6 +33,7 @@
#include "opt_ddb.h"
#include <sys/param.h>
+#include <sys/kdb.h>
#include <sys/kernel.h>
#include <sys/bus.h>
#include <machine/bus.h>
@@ -79,12 +80,12 @@ AcpiOsSignal(UINT32 Function, void *Info)
fatal = (ACPI_SIGNAL_FATAL_INFO *)Info;
printf("ACPI fatal signal, type 0x%x code 0x%x argument 0x%x",
fatal->Type, fatal->Code, fatal->Argument);
- Debugger("AcpiOsSignal");
+ kdb_enter("AcpiOsSignal");
break;
case ACPI_SIGNAL_BREAKPOINT:
message = (char *)Info;
- Debugger(message);
+ kdb_enter(message);
break;
default:
OpenPOWER on IntegriCloud