summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorDamien Bergamini <damien@cvs.openbsd.org>2005-02-18 20:04:41 +0000
committerDamien Bergamini <damien@cvs.openbsd.org>2005-02-18 20:04:41 +0000
commit48023d2f7f86358e8b89b21f966c8aec45b3e50c (patch)
tree868b340852b9829209c4b03dfed1317a564dc3a6 /sys/dev
parent3a7130488e528ce31ce573573ae70e569727ef0b (diff)
do not enable debug messages by default.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/ral.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/ic/ral.c b/sys/dev/ic/ral.c
index e83bd084c11..12df77831ec 100644
--- a/sys/dev/ic/ral.c
+++ b/sys/dev/ic/ral.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ral.c,v 1.7 2005/02/18 20:01:35 damien Exp $ */
+/* $OpenBSD: ral.c,v 1.8 2005/02/18 20:04:40 damien Exp $ */
/*-
* Copyright (c) 2005
@@ -67,12 +67,10 @@
#include <dev/pci/pcivar.h>
#include <dev/pci/pcidevs.h>
-#define RAL_DEBUG
-
#ifdef RAL_DEBUG
#define DPRINTF(x) if (ral_debug > 0) printf x
#define DPRINTFN(n, x) if (ral_debug >= (n)) printf x
-int ral_debug = 14;
+int ral_debug = 0;
#else
#define DPRINTF(x)
#define DPRINTFN(n, x)