Module Name:    src
Committed By:   gsutre
Date:           Wed Oct 27 14:39:27 UTC 2010

Modified Files:
        src/share/man/man4: acpi.4
        src/sys/dev/acpi: acpi_debug.c

Log Message:
Make acpi(4) debug aware of ACPI_DISPLAY_COMPONENT.


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 src/share/man/man4/acpi.4
cvs rdiff -u -r1.3 -r1.4 src/sys/dev/acpi/acpi_debug.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/share/man/man4/acpi.4
diff -u src/share/man/man4/acpi.4:1.60 src/share/man/man4/acpi.4:1.61
--- src/share/man/man4/acpi.4:1.60	Sun Oct 24 08:31:49 2010
+++ src/share/man/man4/acpi.4	Wed Oct 27 14:39:26 2010
@@ -1,4 +1,4 @@
-.\" $NetBSD: acpi.4,v 1.60 2010/10/24 08:31:49 jruoho Exp $
+.\" $NetBSD: acpi.4,v 1.61 2010/10/27 14:39:26 gsutre Exp $
 .\"
 .\" Copyright (c) 2002, 2004, 2010 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -445,6 +445,7 @@
 .It Li ACPI_LID_COMPONENT Ta ACPI_LV_OPTIMIZATIONS
 .It Li ACPI_RESOURCE_COMPONENT Ta ACPI_LV_VERBOSITY2 *
 .It Li ACPI_TZ_COMPONENT Ta
+.It Li ACPI_DISPLAY_COMPONENT Ta
 .It Li ACPI_ALL_DRIVERS * Ta ACPI_LV_MUTEX
 .It Ta ACPI_LV_THREADS
 .It Ta ACPI_LV_IO

Index: src/sys/dev/acpi/acpi_debug.c
diff -u src/sys/dev/acpi/acpi_debug.c:1.3 src/sys/dev/acpi/acpi_debug.c:1.4
--- src/sys/dev/acpi/acpi_debug.c:1.3	Wed Jun 30 07:42:36 2010
+++ src/sys/dev/acpi/acpi_debug.c	Wed Oct 27 14:39:26 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: acpi_debug.c,v 1.3 2010/06/30 07:42:36 jruoho Exp $ */
+/* $NetBSD: acpi_debug.c,v 1.4 2010/10/27 14:39:26 gsutre Exp $ */
 
 /*-
  * Copyright (c) 2010 Jukka Ruohonen <jruoho...@iki.fi>
@@ -27,7 +27,7 @@
  * SUCH DAMAGE.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi_debug.c,v 1.3 2010/06/30 07:42:36 jruoho Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_debug.c,v 1.4 2010/10/27 14:39:26 gsutre Exp $");
 
 #include <sys/param.h>
 #include <sys/sysctl.h>
@@ -183,6 +183,7 @@
 	ACPI_DEBUG_ADD(acpi_debug_layer_d, ACPI_LID_COMPONENT);
 	ACPI_DEBUG_ADD(acpi_debug_layer_d, ACPI_RESOURCE_COMPONENT);
 	ACPI_DEBUG_ADD(acpi_debug_layer_d, ACPI_TZ_COMPONENT);
+	ACPI_DEBUG_ADD(acpi_debug_layer_d, ACPI_DISPLAY_COMPONENT);
 	ACPI_DEBUG_ADD(acpi_debug_layer_d, ACPI_ALL_DRIVERS);
 
 	/*

Reply via email to