Default debugging to OFF now.
This commit is contained in:
parent
edc2d86ced
commit
a6ee5d93d9
@ -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)
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user