summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/acpica/Osd/OsdDebug.c2
-rw-r--r--sys/dev/acpica/Osd/OsdSchedule.c3
-rw-r--r--sys/dev/acpica/acpi.c2
3 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/acpica/Osd/OsdDebug.c b/sys/dev/acpica/Osd/OsdDebug.c
index 0547f75..5664719 100644
--- a/sys/dev/acpica/Osd/OsdDebug.c
+++ b/sys/dev/acpica/Osd/OsdDebug.c
@@ -104,7 +104,7 @@ acpi_EnterDebugger(void)
if (!initted) {
printf("Initialising ACPICA debugger...\n");
- AcpiDbInitialize();
+ AcpiInitializeDebugger();
initted = 1;
}
diff --git a/sys/dev/acpica/Osd/OsdSchedule.c b/sys/dev/acpica/Osd/OsdSchedule.c
index e5d3d51..cf76974 100644
--- a/sys/dev/acpica/Osd/OsdSchedule.c
+++ b/sys/dev/acpica/Osd/OsdSchedule.c
@@ -209,7 +209,8 @@ AcpiOsExecute(ACPI_EXECUTE_TYPE Type, ACPI_OSD_EXEC_CALLBACK Function,
case OSL_EC_BURST_HANDLER:
pri = 5;
break;
- case OSL_DEBUGGER_THREAD:
+ case OSL_DEBUGGER_MAIN_THREAD:
+ case OSL_DEBUGGER_EXEC_THREAD:
pri = 0;
break;
default:
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c
index c671ef9..dfd82d2 100644
--- a/sys/dev/acpica/acpi.c
+++ b/sys/dev/acpica/acpi.c
@@ -3682,7 +3682,7 @@ acpi_UserNotify(const char *subsystem, ACPI_HANDLE h, uint8_t notify)
handle_buf.Pointer = NULL;
handle_buf.Length = ACPI_ALLOCATE_BUFFER;
- status = AcpiNsHandleToPathname(h, &handle_buf);
+ status = AcpiNsHandleToPathname(h, &handle_buf, FALSE);
if (ACPI_FAILURE(status))
return;
snprintf(notify_buf, sizeof(notify_buf), "notify=0x%02x", notify);
OpenPOWER on IntegriCloud