svn commit: r285799 - head/sys/dev/acpica

Jung-uk Kim jkim at FreeBSD.org
Wed Jul 22 16:26:18 UTC 2015


Author: jkim
Date: Wed Jul 22 16:26:17 2015
New Revision: 285799
URL: https://svnweb.freebsd.org/changeset/base/285799

Log:
  Catch up with ACPICA 20150717.

Modified:
  head/sys/dev/acpica/acpi.c

Modified: head/sys/dev/acpica/acpi.c
==============================================================================
--- head/sys/dev/acpica/acpi.c	Wed Jul 22 16:25:18 2015	(r285798)
+++ head/sys/dev/acpica/acpi.c	Wed Jul 22 16:26:17 2015	(r285799)
@@ -3664,7 +3664,7 @@ acpi_UserNotify(const char *subsystem, A
 
     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);


More information about the svn-src-all mailing list