Module Name:    src
Committed By:   jruoho
Date:           Sun Feb 27 17:31:09 UTC 2011

Modified Files:
        src/sys/dev/pci: pci_map.c

Log Message:
Remove the following aprint_debug(9): "pci_mem_find: void region". I have
a system where this is printed about a hundred times. No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 src/sys/dev/pci/pci_map.c

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

Modified files:

Index: src/sys/dev/pci/pci_map.c
diff -u src/sys/dev/pci/pci_map.c:1.25 src/sys/dev/pci/pci_map.c:1.26
--- src/sys/dev/pci/pci_map.c:1.25	Tue May 11 16:49:35 2010
+++ src/sys/dev/pci/pci_map.c	Sun Feb 27 17:31:08 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: pci_map.c,v 1.25 2010/05/11 16:49:35 dyoung Exp $	*/
+/*	$NetBSD: pci_map.c,v 1.26 2011/02/27 17:31:08 jruoho Exp $	*/
 
 /*-
  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pci_map.c,v 1.25 2010/05/11 16:49:35 dyoung Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pci_map.c,v 1.26 2011/02/27 17:31:08 jruoho Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -174,7 +174,6 @@
 
 	if ((is64bit && PCI_MAPREG_MEM64_SIZE(wmask) == 0) ||
 	    (!is64bit && PCI_MAPREG_MEM_SIZE(mask) == 0)) {
-		aprint_debug("pci_mem_find: void region\n");
 		return 1;
 	}
 

Reply via email to