diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-08-14 06:53:27 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-08-14 06:53:27 +0000 |
commit | 2b1a199d7c61117f2a1a30c586034e17bb9a4ebc (patch) | |
tree | 0b4bac50ea6dd0c37a7e09a0c2fe4d15914dfc54 | |
parent | 28e5a7d41f1bb84fdf40d387fd18095b5a7b902c (diff) |
Turn off debug messages by default.
Reminded by deraadt@
-rw-r--r-- | sys/dev/ic/acx.c | 6 | ||||
-rw-r--r-- | sys/dev/ic/acx100.c | 4 | ||||
-rw-r--r-- | sys/dev/ic/acx111.c | 4 |
3 files changed, 4 insertions, 10 deletions
diff --git a/sys/dev/ic/acx.c b/sys/dev/ic/acx.c index 24872cb52f2..cb30edd0330 100644 --- a/sys/dev/ic/acx.c +++ b/sys/dev/ic/acx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx.c,v 1.39 2006/08/13 01:34:20 mglocker Exp $ */ +/* $OpenBSD: acx.c,v 1.40 2006/08/14 06:53:26 jsg Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -129,13 +129,11 @@ #include <dev/pci/pcivar.h> #include <dev/pci/pcidevs.h> -#define ACX_DEBUG - #include <dev/ic/acxvar.h> #include <dev/ic/acxreg.h> #ifdef ACX_DEBUG -int acxdebug = 1; +int acxdebug = 0; #endif #define ACX_ENABLE_TXCHAN(sc, chan, ifname) \ diff --git a/sys/dev/ic/acx100.c b/sys/dev/ic/acx100.c index 0c3497c2fc7..80e05c4c502 100644 --- a/sys/dev/ic/acx100.c +++ b/sys/dev/ic/acx100.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx100.c,v 1.8 2006/08/07 10:46:12 mglocker Exp $ */ +/* $OpenBSD: acx100.c,v 1.9 2006/08/14 06:53:26 jsg Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -74,8 +74,6 @@ #include <dev/pci/pcireg.h> -#define ACX_DEBUG - #include <dev/ic/acxvar.h> #include <dev/ic/acxreg.h> diff --git a/sys/dev/ic/acx111.c b/sys/dev/ic/acx111.c index 61b70a75075..3862ede0e57 100644 --- a/sys/dev/ic/acx111.c +++ b/sys/dev/ic/acx111.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx111.c,v 1.8 2006/08/06 14:23:28 mglocker Exp $ */ +/* $OpenBSD: acx111.c,v 1.9 2006/08/14 06:53:26 jsg Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -73,8 +73,6 @@ #include <dev/pci/pcireg.h> -#define ACX_DEBUG - #include <dev/ic/acxvar.h> #include <dev/ic/acxreg.h> |