summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2002-02-04 15:55:21 +0000
committerimp <imp@FreeBSD.org>2002-02-04 15:55:21 +0000
commita6ee5d93d9ebe8b8cc7fb43b100c3e0e4eadf4f0 (patch)
tree5dbb4b69971f23e8adf39412496a38837140fc22 /sys
parentedc2d86cedf7a829b74ccfbb1001affc5f633a37 (diff)
downloadFreeBSD-src-a6ee5d93d9ebe8b8cc7fb43b100c3e0e4eadf4f0.zip
FreeBSD-src-a6ee5d93d9ebe8b8cc7fb43b100c3e0e4eadf4f0.tar.gz
Default debugging to OFF now.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/exca/exca.c1
-rw-r--r--sys/dev/pccard/pccard.c2
-rw-r--r--sys/dev/pccard/pccard_cis.c2
-rw-r--r--sys/dev/pccbb/pccbb.c2
4 files changed, 2 insertions, 5 deletions
diff --git a/sys/dev/exca/exca.c b/sys/dev/exca/exca.c
index 52e3da2..d2ed4a7 100644
--- a/sys/dev/exca/exca.c
+++ b/sys/dev/exca/exca.c
@@ -72,7 +72,6 @@
#include <dev/exca/excareg.h>
#include <dev/exca/excavar.h>
-#define EXCA_DEBUG
#ifdef EXCA_DEBUG
#define DEVPRINTF(dev, fmt, args...) device_printf((dev), (fmt), ## args)
#define DPRINTF(fmt, args...) printf(fmt, ## args)
diff --git a/sys/dev/pccard/pccard.c b/sys/dev/pccard/pccard.c
index f6ea864..55ddde4 100644
--- a/sys/dev/pccard/pccard.c
+++ b/sys/dev/pccard/pccard.c
@@ -54,7 +54,7 @@
#define PCCARDDEBUG
#ifdef PCCARDDEBUG
-int pccard_debug = 1;
+int pccard_debug = 0;
#define DPRINTF(arg) if (pccard_debug) printf arg
#define DEVPRINTF(arg) if (pccard_debug) device_printf arg
#define PRVERBOSE(arg) printf arg
diff --git a/sys/dev/pccard/pccard_cis.c b/sys/dev/pccard/pccard_cis.c
index d05c5c1..f8af7c9 100644
--- a/sys/dev/pccard/pccard_cis.c
+++ b/sys/dev/pccard/pccard_cis.c
@@ -50,7 +50,7 @@
#define PCCARDCISDEBUG
#ifdef PCCARDCISDEBUG
-int pccardcis_debug = 1;
+int pccardcis_debug = 0;
#define DPRINTF(arg) if (pccardcis_debug) printf arg
#define DEVPRINTF(arg) if (pccardcis_debug) device_printf arg
#else
diff --git a/sys/dev/pccbb/pccbb.c b/sys/dev/pccbb/pccbb.c
index 62a66d9..0cf2775 100644
--- a/sys/dev/pccbb/pccbb.c
+++ b/sys/dev/pccbb/pccbb.c
@@ -43,8 +43,6 @@
* * David Cross: Author of the initial ugly hack for a specific cardbus card
*/
-#define CBB_DEBUG
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
OpenPOWER on IntegriCloud