Module Name: src Committed By: thorpej Date: Wed Jul 8 13:12:35 UTC 2020
Modified Files: src/sys/dev/pci: pciconf.c Log Message: Turn off pci_conf_debug -- it was enabled by mistake in previous commit. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/sys/dev/pci/pciconf.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/pciconf.c diff -u src/sys/dev/pci/pciconf.c:1.47 src/sys/dev/pci/pciconf.c:1.48 --- src/sys/dev/pci/pciconf.c:1.47 Tue Jul 7 03:38:49 2020 +++ src/sys/dev/pci/pciconf.c Wed Jul 8 13:12:35 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: pciconf.c,v 1.47 2020/07/07 03:38:49 thorpej Exp $ */ +/* $NetBSD: pciconf.c,v 1.48 2020/07/08 13:12:35 thorpej Exp $ */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -65,7 +65,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: pciconf.c,v 1.47 2020/07/07 03:38:49 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pciconf.c,v 1.48 2020/07/08 13:12:35 thorpej Exp $"); #include "opt_pci.h" @@ -81,7 +81,7 @@ __KERNEL_RCSID(0, "$NetBSD: pciconf.c,v #include <dev/pci/pcidevs.h> #include <dev/pci/pccbbreg.h> -int pci_conf_debug = 1; +int pci_conf_debug = 0; #if !defined(MIN) #define MIN(a,b) (((a)<(b))?(a):(b))