Default debugging to OFF now.

This commit is contained in:
imp 2002-02-04 15:55:21 +00:00
parent edc2d86ced
commit a6ee5d93d9
4 changed files with 2 additions and 5 deletions

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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>