From a0e457a620d95cea5e000939e4207a9a908ff3c3 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Mon, 4 Feb 2002 15:55:21 +0000 Subject: Default debugging to OFF now. --- sys/dev/exca/exca.c | 1 - sys/dev/pccard/pccard.c | 2 +- sys/dev/pccard/pccard_cis.c | 2 +- sys/dev/pccbb/pccbb.c | 2 -- 4 files changed, 2 insertions(+), 5 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/exca/exca.c b/sys/dev/exca/exca.c index 52e3da2cf959..d2ed4a718197 100644 --- a/sys/dev/exca/exca.c +++ b/sys/dev/exca/exca.c @@ -72,7 +72,6 @@ #include #include -#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 f6ea8648156f..55ddde4f14b5 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 d05c5c185ca5..f8af7c96fe88 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 62a66d901109..0cf27750a27f 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 #include #include -- cgit v1.3